Changeset 838 for trunk/grails-app/views/entryDetailed
- Timestamp:
- Mar 3, 2011, 11:17:40 PM (14 years ago)
- Location:
- trunk/grails-app/views/entryDetailed
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/entryDetailed/_create.gsp
r833 r838 16 16 <table> 17 17 <tbody> 18 19 <g:if test="${entryInstance?.entryType?.id == 1}"> 20 <tr class="prop"> 21 <td valign="top" class="name"> 22 <label for="productionReference">Production:</label> 23 </td> 24 <td valign="top" class="value ${hasErrors(bean:entryInstance,field:'productionReference','errors')}"> 25 <g:select optionKey="id" 26 from="${ProductionReference.findAllByIsActive(true)}" 27 name="productionReference.id" 28 value="${entryInstance.productionReference?.id}" 29 noSelection="['null':'--None--']"> 30 </g:select> 31 <custom:helpBalloon code="entry.productionReference.fault" iconSrc="${resource(plugin:'help-balloons', dir:'images', file:'balloon-icon.gif')}" /> 32 </td> 33 </tr> 34 </g:if> 35 36 <g:if test="${entryInstance?.entryType?.id == 6}"> 37 <tr class="prop"> 38 <td valign="top" class="name"> 39 <label for="highestSeverity">Condition Severity:</label> 40 </td> 41 <td valign="top" class="value ${hasErrors(bean:entryInstance,field:'highestSeverity','errors')}"> 42 <g:select optionKey="id" 43 from="${ConditionSeverity.findAllByIsActive(true)}" 44 name="highestSeverity.id" 45 value="${entryInstance.highestSeverity?.id}" 46 noSelection="['null':/${g.message(code:'default.please.select.text')}/]" > 47 </g:select> 48 <custom:helpBalloon code="entry.comment.pm.entry" iconSrc="${resource(plugin:'help-balloons', dir:'images', file:'balloon-icon.gif')}" /> 49 </td> 50 </tr> 51 </g:if> 18 52 19 53 <tr class="prop"> … … 48 82 </tr> 49 83 50 <g:if test="${entryInstance?.entryType?.id == 1}">51 <tr class="prop">52 <td valign="top" class="name">53 <label for="productionReference">Production:</label>54 </td>55 <td valign="top" class="value ${hasErrors(bean:entryInstance,field:'productionReference','errors')}">56 <g:select optionKey="id"57 from="${ProductionReference.findAllByIsActive(true)}"58 name="productionReference.id"59 value="${entryInstance.productionReference?.id}"60 noSelection="['null':'--None--']">61 </g:select>62 <custom:helpBalloon code="entry.productionReference.fault" iconSrc="${resource(plugin:'help-balloons', dir:'images', file:'balloon-icon.gif')}" />63 </td>64 </tr>65 </g:if>66 67 84 <g:if test="${entryInstance?.entryType?.id != 2}"> 68 85 <tr class="prop"> -
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}"'> -
trunk/grails-app/views/entryDetailed/edit.gsp
r432 r838 37 37 </td> 38 38 </tr> 39 40 <g:if test="${entryInstance?.entryType?.id == 1}"> 41 <tr class="prop"> 42 <td valign="top" class="name"> 43 <label for="productionReference">Production:</label> 44 </td> 45 <td valign="top" class="value ${hasErrors(bean:entryInstance,field:'productionReference','errors')}"> 46 <g:select optionKey="id" 47 from="${ProductionReference.findAllByIsActive(true)}" 48 name="productionReference.id" 49 value="${entryInstance.productionReference?.id}" 50 noSelection="['null':'--None--']"> 51 </g:select> 52 <g:helpBalloon code="entry.productionReference.fault" /> 53 </td> 54 </tr> 55 </g:if> 56 57 <g:if test="${entryInstance?.entryType?.id == 6}"> 58 <tr class="prop"> 59 <td valign="top" class="name"> 60 <label for="highestSeverity">Condition Severity:</label> 61 </td> 62 <td valign="top" class="value ${hasErrors(bean:entryInstance,field:'highestSeverity','errors')}"> 63 <g:select optionKey="id" 64 from="${ConditionSeverity.findAllByIsActive(true)}" 65 name="highestSeverity.id" 66 value="${entryInstance.highestSeverity?.id}" 67 noSelection="['null':/${g.message(code:'default.please.select.text')}/]" > 68 </g:select> 69 <custom:helpBalloon code="entry.comment.pm.entry" iconSrc="${resource(plugin:'help-balloons', dir:'images', file:'balloon-icon.gif')}" /> 70 </td> 71 </tr> 72 </g:if> 39 73 40 74 <tr class="prop"> … … 55 89 </td> 56 90 </tr> 57 58 <g:if test="${entryInstance?.entryType?.id == 1}">59 <tr class="prop">60 <td valign="top" class="name">61 <label for="productionReference">Production:</label>62 </td>63 <td valign="top" class="value ${hasErrors(bean:entryInstance,field:'productionReference','errors')}">64 <g:select optionKey="id"65 from="${ProductionReference.findAllByIsActive(true)}"66 name="productionReference.id"67 value="${entryInstance.productionReference?.id}"68 noSelection="['null':'--None--']">69 </g:select>70 <g:helpBalloon code="entry.productionReference.fault" />71 </td>72 </tr>73 </g:if>74 91 75 92 <g:if test="${entryInstance?.entryType?.id != 2}"> -
trunk/grails-app/views/entryDetailed/show.gsp
r431 r838 33 33 34 34 </tr> 35 36 <g:if test="${entryInstance.productionReference}"> 37 <tr class="prop"> 38 <td valign="top" class="name">Production:</td> 39 40 <td valign="top" class="value"> 41 ${fieldValue(bean:entryInstance, field:'productionReference')} 42 </td> 43 44 </tr> 45 </g:if> 46 47 <g:if test="${entryInstance.highestSeverity}"> 48 <tr class="prop"> 49 <td valign="top" class="name">Condition Severity:</td> 50 51 <td valign="top" class="value"> 52 ${fieldValue(bean:entryInstance, field:'highestSeverity')} 53 </td> 54 55 </tr> 56 </g:if> 35 57 36 58 <tr class="prop"> … … 49 71 50 72 </tr> 51 52 <g:if test="${entryInstance.productionReference}">53 <tr class="prop">54 <td valign="top" class="name">Production:</td>55 56 <td valign="top" class="value">57 ${fieldValue(bean:entryInstance, field:'productionReference')}58 </td>59 60 </tr>61 </g:if>62 73 63 74 <tr class="prop">
Note: See TracChangeset
for help on using the changeset viewer.