source: trunk/grails-app/views/unitOfMeasureDetailed/list.gsp @ 559

Last change on this file since 559 was 559, checked in by gav, 14 years ago

Svn move UnitOfMeasure to UnitOfMeasureDetailed.

File size: 3.1 KB
RevLine 
[116]1
2
3<html>
4    <head>
5        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
6        <meta name="layout" content="main" />
7        <title>UnitOfMeasure List</title>
[559]8        <nav:resources override="true"/>
[116]9    </head>
10    <body>
11        <div class="nav">
[559]12            <nav:renderSubItems group="navAlt"/>
[116]13        </div>
14        <div class="body">
[557]15            <g:render template="/shared/messages" />
[116]16            <div class="list">
17                <table>
18                    <thead>
19                        <tr>
20                       
21                                <g:sortableColumn property="id" title="Id" />
22                       
[557]23                                <g:sortableColumn property="name" title="Name" />
24                       
[116]25                                <g:sortableColumn property="description" title="Description" />
26                       
27                                <g:sortableColumn property="isActive" title="Is Active" />
[559]28
29                            <th></th>
[116]30                       
31                        </tr>
32                    </thead>
33                    <tbody>
34                    <g:each in="${unitOfMeasureInstanceList}" status="i" var="unitOfMeasureInstance">
[559]35                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
[116]36                       
[559]37                            <td onclick='window.location = "${request.getContextPath()}/unitOfMeasureDetailed/show/${unitOfMeasureInstance.id}"'>
38                                    ${fieldValue(bean:unitOfMeasureInstance, field:'id')}
39                            </td>
[116]40                       
[559]41                            <td onclick='window.location = "${request.getContextPath()}/unitOfMeasureDetailed/show/${unitOfMeasureInstance.id}"'>
42                                ${fieldValue(bean:unitOfMeasureInstance, field:'name')}
43                            </td>
[557]44                       
[559]45                            <td onclick='window.location = "${request.getContextPath()}/unitOfMeasureDetailed/show/${unitOfMeasureInstance.id}"'>
46                                ${fieldValue(bean:unitOfMeasureInstance, field:'description')}
47                            </td>
[116]48                       
[559]49                            <td onclick='window.location = "${request.getContextPath()}/unitOfMeasureDetailed/show/${unitOfMeasureInstance.id}"'>
50                                ${fieldValue(bean:unitOfMeasureInstance, field:'isActive')}
51                            </td>
52
53                            <td class="notClickable">
54                                <g:link action="show" id="${unitOfMeasureInstance.id}">
55                                    <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
56                                </g:link>
57                            </td>
[116]58                       
59                        </tr>
60                    </g:each>
61                    </tbody>
62                </table>
63            </div>
64            <div class="paginateButtons">
65                <g:paginate total="${unitOfMeasureInstanceTotal}" />
66            </div>
67        </div>
68    </body>
69</html>
Note: See TracBrowser for help on using the repository browser.