Changeset 574
- Timestamp:
- Jun 7, 2010, 12:36:07 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/taskDetailed/show.gsp
r567 r574 43 43 <richui:tabLabels> 44 44 <richui:tabLabel selected="${showTab.task}" title="Details" /> 45 <richui:tabLabel selected="${showTab.procedure}" title="Procedure" /> 46 <richui:tabLabel selected="${showTab.recurrence}" title="Recurrence" /> 47 <richui:tabLabel selected="${showTab.inventory}" title="Inventory" /> 48 <richui:tabLabel selected="${showTab.subTasks}" title="Sub Tasks" /> 45 <g:if test="${taskProcedureExits}"> 46 <richui:tabLabel selected="${showTab.procedure}" title="Procedure (!)" /> 47 </g:if> 48 <g:else> 49 <richui:tabLabel selected="${showTab.procedure}" title="Procedure" /> 50 </g:else> 51 <g:if test="${taskRecurringScheduleExits}"> 52 <richui:tabLabel selected="${showTab.recurrence}" title="Recurrence (!)" /> 53 </g:if> 54 <g:else> 55 <richui:tabLabel selected="${showTab.recurrence}" title="Recurrence" /> 56 </g:else> 57 <g:if test="${!inventoryMovementList.isEmpty()}"> 58 <richui:tabLabel selected="${showTab.inventory}" title="Inventory (${inventoryMovementList.size()})" /> 59 </g:if> 60 <g:else> 61 <richui:tabLabel selected="${showTab.inventory}" title="Inventory (0)" /> 62 </g:else> 63 <g:if test="${subTaskInstanceTotal > 0}"> 64 <richui:tabLabel selected="${showTab.subTasks}" title="Sub Tasks (${subTaskInstanceTotal})" /> 65 </g:if> 66 <g:else> 67 <richui:tabLabel selected="${showTab.subTasks}" title="Sub Tasks (0)" /> 68 </g:else> 49 69 </richui:tabLabels> 50 70 … … 732 752 <!-- Start Sub Task tab --> 733 753 <richui:tabContent> 734 <g:if test="${subTaskInstanceTotal > = 1}">754 <g:if test="${subTaskInstanceTotal > 0}"> 735 755 <div class="list"> 736 756 <table>
Note: See TracChangeset
for help on using the changeset viewer.