Changeset 147 for trunk/grails-app/views/assignedPersonDetailed/create.gsp
- Timestamp:
- Oct 8, 2009, 7:58:38 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/assignedPersonDetailed/create.gsp
r134 r147 9 9 <body> 10 10 <div class="nav"> 11 <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span> 12 <span class="menuButton"><g:link class="list" action="list">AssignedPerson List</g:link></span> 11 <h1>Create Assigned Person</h1> 13 12 </div> 14 13 <div class="body"> 15 <h1>Create AssignedPerson</h1>16 14 <g:if test="${flash.message}"> 17 15 <div class="message">${flash.message}</div> … … 48 46 <tr class="prop"> 49 47 <td valign="top" class="name"> 50 <label for=" estimatedHour">Estimated Hour:</label>48 <label for="durationHour">Estimated Duration:</label> 51 49 </td> 52 <td valign="top" class="value ${hasErrors(bean:assignedPersonInstance,field:'estimatedHour','errors')}"> 53 <input type="text" id="estimatedHour" name="estimatedHour" value="${fieldValue(bean:assignedPersonInstance,field:'estimatedHour')}" /> 54 </td> 55 </tr> 56 57 <tr class="prop"> 58 <td valign="top" class="name"> 59 <label for="estimatedMinute">Estimated Minute:</label> 60 </td> 61 <td valign="top" class="value ${hasErrors(bean:assignedPersonInstance,field:'estimatedMinute','errors')}"> 62 <input type="text" id="estimatedMinute" name="estimatedMinute" value="${fieldValue(bean:assignedPersonInstance,field:'estimatedMinute')}" /> 63 </td> 64 </tr> 50 51 <td valign="top" class="value"> 52 <input class="time ${hasErrors(bean:assignedPersonInstance,field:'estimatedHour','errors')}" 53 type="text" id="estimatedHour" name="estimatedHour" 54 value="${fieldValue(bean:assignedPersonInstance,field:'estimatedHour')}" /> 55 : 56 <input class="time ${hasErrors(bean:assignedPersonInstance,field:'estimatedMinute','errors')}" 57 type="text" id="estimatedMinute" name="estimatedMinute" 58 value="${fieldValue(bean:assignedPersonInstance,field:'estimatedMinute')}" /> 59 <g:helpBalloon code="assignedPerson.estimatedDuration" /> 60 </td> 61 </tr> 65 62 66 63 </tbody>
Note: See TracChangeset
for help on using the changeset viewer.