Changeset 147 for trunk/grails-app/views/assignedPersonDetailed
- Timestamp:
- Oct 8, 2009, 7:58:38 PM (15 years ago)
- Location:
- trunk/grails-app/views/assignedPersonDetailed
- Files:
-
- 4 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> -
trunk/grails-app/views/assignedPersonDetailed/edit.gsp
r96 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> 13 <span class="menuButton"><g:link class="create" action="create">New AssignedPerson</g:link></span> 11 <h1>Edit Assigned Person</h1> 14 12 </div> 15 13 <div class="body"> 16 <h1>Edit AssignedPerson</h1>17 14 <g:if test="${flash.message}"> 18 15 <div class="message">${flash.message}</div> … … 46 43 <g:select optionKey="id" from="${Person.list()}" name="person.id" value="${assignedPersonInstance?.person?.id}" ></g:select> 47 44 </td> 48 </tr> 49 45 </tr> 46 50 47 <tr class="prop"> 51 48 <td valign="top" class="name"> 52 <label for=" estimatedHour">Estimated Hour:</label>49 <label for="durationHour">Estimated Duration:</label> 53 50 </td> 54 <td valign="top" class="value ${hasErrors(bean:assignedPersonInstance,field:'estimatedHour','errors')}"> 55 <input type="text" id="estimatedHour" name="estimatedHour" value="${fieldValue(bean:assignedPersonInstance,field:'estimatedHour')}" /> 56 </td> 57 </tr> 58 59 <tr class="prop"> 60 <td valign="top" class="name"> 61 <label for="estimatedMinute">Estimated Minute:</label> 62 </td> 63 <td valign="top" class="value ${hasErrors(bean:assignedPersonInstance,field:'estimatedMinute','errors')}"> 64 <input type="text" id="estimatedMinute" name="estimatedMinute" value="${fieldValue(bean:assignedPersonInstance,field:'estimatedMinute')}" /> 65 </td> 66 </tr> 67 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> 62 68 63 </tbody> 69 64 </table> -
trunk/grails-app/views/assignedPersonDetailed/list.gsp
r96 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="create" action="create">New AssignedPerson</g:link></span> 11 <h1>Assigned Person List</h1> 13 12 </div> 14 13 <div class="body"> 15 <h1>AssignedPerson List</h1>16 14 <g:if test="${flash.message}"> 17 15 <div class="message">${flash.message}</div> -
trunk/grails-app/views/assignedPersonDetailed/show.gsp
r114 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> 13 <span class="menuButton"><g:link class="create" action="create">New AssignedPerson</g:link></span> 11 <h1>Show Assigned Person</h1> 14 12 </div> 15 13 <div class="body"> 16 <h1>Show AssignedPerson</h1>17 14 <g:if test="${flash.message}"> 18 15 <div class="message">${flash.message}</div> … … 45 42 46 43 <tr class="prop"> 47 <td valign="top" class="name">Estimated Hour:</td> 48 49 <td valign="top" class="value">${fieldValue(bean:assignedPersonInstance, field:'estimatedHour')}</td> 50 44 <td valign="top" class="name">Estimated Duration:</td> 45 <td valign="top" class="value">${assignedPersonInstance.estimatedHour}h : ${assignedPersonInstance.estimatedMinute}min</td> 51 46 </tr> 52 53 <tr class="prop"> 54 <td valign="top" class="name">Estimated Minute:</td> 55 56 <td valign="top" class="value">${fieldValue(bean:assignedPersonInstance, field:'estimatedMinute')}</td> 57 58 </tr> 59 47 60 48 </tbody> 61 49 </table>
Note: See TracChangeset
for help on using the changeset viewer.