|
18 | 18 | <div class="message" role="status">${flash.message}</div> |
19 | 19 | </g:if> |
20 | 20 | <table class="table table-striped table-hover"> |
21 | | - <thead> |
22 | | - <tr> |
23 | | - <th>${message(code: 'registry.apiVersion.label', default: 'Api Version')}</th> |
24 | | - <th>${message(code: 'registry.protocol.label', default: 'Protocol')}</th> |
25 | | - <th>${message(code: 'registry.host.label', default: 'Hostname')}</th> |
26 | | - <th>${message(code: 'registry.port.label', default: 'Port')}</th> |
27 | | - <th>${message(code: 'registry.username.label', default: 'Username')}</th> |
28 | | - <th>${message(code: 'registry.password.label', default: 'Password')}</th> |
29 | | - </tr> |
30 | | - </thead> |
31 | | - <tbody> |
32 | | - <g:each in="${registryInstanceList}" status="i" var="registryInstance"> |
33 | | - <tr class="${(i % 2) == 0 ? 'even' : 'odd'}"> |
34 | | - |
35 | | - <td><g:link action="show" id="${registryInstance.id}">${fieldValue(bean: registryInstance, field: "apiVersion")}</g:link></td> |
36 | | - |
37 | | - <td>${fieldValue(bean: registryInstance, field: "protocol")}</td> |
38 | | - |
39 | | - <td>${fieldValue(bean: registryInstance, field: "host")}</td> |
40 | | - |
41 | | - <td>${fieldValue(bean: registryInstance, field: "port")}</td> |
42 | | - |
43 | | - <td>${fieldValue(bean: registryInstance, field: "username")}</td> |
44 | | - |
45 | | - <td>${fieldValue(bean: registryInstance, field: "password")?.replaceAll(".", "*")}</td> |
46 | | - </tr> |
47 | | - </g:each> |
48 | | - </tbody> |
49 | | - </table> |
50 | | - <div class="pagination"> |
51 | | - <g:paginate total="${registryInstanceCount ?: 0}" /> |
52 | | - </div> |
53 | | - </div> |
54 | | - </body> |
| 21 | + <thead> |
| 22 | + <tr> |
| 23 | + <th>${message(code: 'registry.host.label', default: 'Hostname')}</th> |
| 24 | + <th>${message(code: 'registry.port.label', default: 'Port')}</th> |
| 25 | + <th>${message(code: 'registry.username.label', default: 'Username')}</th> |
| 26 | + <th>${message(code: 'registry.password.label', default: 'Password')}</th> |
| 27 | + <th>${message(code: 'registry.apiVersion.label', default: 'Api Version')}</th> |
| 28 | + </tr> |
| 29 | + </thead> |
| 30 | + <tbody> |
| 31 | + <g:each in="${registryInstanceList}" status="i" var="registryInstance"> |
| 32 | + <tr class="${(i % 2) == 0 ? 'even' : 'odd'}"> |
| 33 | + <td><g:link action="show" id="${registryInstance.id}">${fieldValue(bean: registryInstance, field: "host")}</g:link></td> |
| 34 | + <td>${fieldValue(bean: registryInstance, field: "port")}</td> |
| 35 | + <td>${fieldValue(bean: registryInstance, field: "username")}</td> |
| 36 | + <td>${fieldValue(bean: registryInstance, field: "password")?.replaceAll(".", "*")}</td> |
| 37 | + <td>${fieldValue(bean: registryInstance, field: "apiVersion")}</td> |
| 38 | + </tr> |
| 39 | + </g:each> |
| 40 | + </tbody> |
| 41 | + </table> |
| 42 | + <div class="pagination"> |
| 43 | + <g:paginate total="${registryInstanceCount ?: 0}" /> |
| 44 | + </div> |
| 45 | + </div> |
| 46 | + </body> |
55 | 47 | </html> |
0 commit comments