Changeset 838 for trunk/grails-app/views/entryDetailed/_list.gsp
- Timestamp:
- Mar 3, 2011, 11:17:40 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/entryDetailed/_list.gsp
r834 r838 18 18 <thead> 19 19 <tr> 20 <g:if test="${entryList[0]?.entryType?.id == 6}"> 21 <th> 22 <img src="${resource(dir:'images/skin',file:'award_star_silver_3.png')}" 23 alt="Severity" 24 title="Highest Severity" /> 25 </th> 26 </g:if> 20 27 <th>Comment</th> 21 28 <th>Date Done</th> … … 28 35 <g:each in="${entryList}" status="i" var="entry"> 29 36 <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"> 37 38 <g:if test="${entryList[0]?.entryType?.id == 6}"> 39 <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'> 40 ${entry.highestSeverity.code.encodeAsHTML()} 41 </td> 42 </g:if> 30 43 31 44 <td width="65%" onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'>
Note: See TracChangeset
for help on using the changeset viewer.