Changeset 25 for trunk/src/grails-app/views/entry/list.gsp
- Timestamp:
- Jan 20, 2009, 8:08:17 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/grails-app/views/entry/list.gsp
r21 r25 24 24 <g:sortableColumn property="id" title="Id" /> 25 25 26 <th>Person</th> 27 28 <th>Task</th> 29 30 <g:sortableColumn property="dateTime" title="Date Time" /> 26 <g:sortableColumn property="comments" title="Comments" /> 27 28 <g:sortableColumn property="date" title="Date" /> 31 29 32 30 <g:sortableColumn property="duration" title="Duration" /> 33 31 34 <g:sortableColumn property="comments" title="Comments" /> 35 32 <th>Entry Type</th> 33 34 <th>Person</th> 35 36 36 </tr> 37 37 </thead> … … 42 42 <td><g:link action="show" id="${entryInstance.id}">${fieldValue(bean:entryInstance, field:'id')}</g:link></td> 43 43 44 <td>${fieldValue(bean:entryInstance, field:' person')}</td>44 <td>${fieldValue(bean:entryInstance, field:'comments')}</td> 45 45 46 <td>${fieldValue(bean:entryInstance, field:'task')}</td> 47 48 <td>${fieldValue(bean:entryInstance, field:'dateTime')}</td> 46 <td>${fieldValue(bean:entryInstance, field:'date')}</td> 49 47 50 48 <td>${fieldValue(bean:entryInstance, field:'duration')}</td> 51 49 52 <td>${fieldValue(bean:entryInstance, field:'comments')}</td> 50 <td>${fieldValue(bean:entryInstance, field:'entryType')}</td> 51 52 <td>${fieldValue(bean:entryInstance, field:'person')}</td> 53 53 54 54 </tr>
Note: See TracChangeset
for help on using the changeset viewer.