Statistics
| Revision:

root / hci / trunk / eneraptor-web-app / grails-app / views / config / dbInfo.gsp @ 6

History | View | Annotate | Download (346 Bytes)

1
<p>Database configuration:</p>
2
<table width="100%">
3
	<thead>
4
		<tr>
5
			<th>Name</th>
6
			<th>Value</th>
7
			<th>Description</th>
8
		</tr>
9
	</thead>
10
	<tbody>
11
		<g:each in="${databaseInfo}" var="row">
12
			<tr>
13
				<td>${row.name}</td>
14
				<td>${row.setting}</td>
15
				<td>${row.description}</td>
16
			</tr>
17
		</g:each>
18
	</tbody>
19
</table>