Changeset 866 for trunk/grails-app/views/taskDetailed/_showSubTaskTab.gsp
- Timestamp:
- Mar 15, 2011, 7:54:54 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/taskDetailed/_showSubTaskTab.gsp
r836 r866 6 6 <tr> 7 7 8 <th> Id</th>8 <th>Task #</th> 9 9 10 10 <th>Target Start Date</th> … … 12 12 <th>Description</th> 13 13 14 <th>Lead Person</th> 14 <th> 15 <img src="${resource(dir:'images/skin',file:'status.png')}" title="Status" alt="Status" /> 16 </th> 15 17 16 <th>Task Priority</th> 17 18 <th>Task Status</th> 18 <th>Priority</th> 19 19 20 20 <th></th> … … 35 35 36 36 <td onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${subTaskInstance.id}"'> 37 <g:if test="${taskInstance.primaryAsset}"> 38 ${fieldValue(bean:taskInstance, field:'primaryAsset')}: 39 </g:if> 37 40 ${fieldValue(bean:subTaskInstance, field:'description')} 38 41 </td> 39 42 40 41 <td onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${subTaskInstance.id}"'> 42 ${fieldValue(bean:subTaskInstance, field:'leadPerson')} 43 <td class="idColumn" onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${taskInstance.id}"'> 44 <g:if test="${taskInstance.taskStatus.id == 1}" > 45 <img src="${resource(dir:'images/skin',file:'not_started.png')}" alt="Not Started" title="Not Started" /> 46 </g:if> 47 <g:if test="${taskInstance.taskStatus.id == 2}" > 48 <img src="${resource(dir:'images/skin',file:'arrow_right.png')}" alt="In Progress" title="In Progress" /> 49 </g:if> 50 <g:if test="${taskInstance.taskStatus.id == 3}" > 51 <img src="${resource(dir:'images/skin',file:'tick.png')}" alt="Complete" title="Complete" /> 52 </g:if> 43 53 </td> 44 54 45 55 <td onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${subTaskInstance.id}"'> 46 56 ${fieldValue(bean:subTaskInstance, field:'taskPriority')} 47 </td>48 49 <td onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${subTaskInstance.id}"'>50 ${fieldValue(bean:subTaskInstance, field:'taskStatus')}51 57 </td> 52 58
Note: See TracChangeset
for help on using the changeset viewer.