[118] | 1 | |
---|
| 2 | |
---|
| 3 | <html> |
---|
| 4 | <head> |
---|
| 5 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> |
---|
| 6 | <meta name="layout" content="main" /> |
---|
| 7 | <title>Edit LifePlan</title> |
---|
| 8 | </head> |
---|
| 9 | <body> |
---|
| 10 | <div class="nav"> |
---|
[151] | 11 | <span class="menuButton"><a class="home" href="${resource(dir:'')}">Home</a></span> |
---|
[118] | 12 | <span class="menuButton"><g:link class="list" action="list">LifePlan List</g:link></span> |
---|
| 13 | <span class="menuButton"><g:link class="create" action="create">New LifePlan</g:link></span> |
---|
| 14 | </div> |
---|
| 15 | <div class="body"> |
---|
| 16 | <h1>Edit LifePlan</h1> |
---|
| 17 | <g:if test="${flash.message}"> |
---|
| 18 | <div class="message">${flash.message}</div> |
---|
| 19 | </g:if> |
---|
| 20 | <g:hasErrors bean="${lifePlanInstance}"> |
---|
| 21 | <div class="errors"> |
---|
| 22 | <g:renderErrors bean="${lifePlanInstance}" as="list" /> |
---|
| 23 | </div> |
---|
| 24 | </g:hasErrors> |
---|
| 25 | <g:form method="post" > |
---|
| 26 | <input type="hidden" name="id" value="${lifePlanInstance?.id}" /> |
---|
| 27 | <input type="hidden" name="version" value="${lifePlanInstance?.version}" /> |
---|
| 28 | <div class="dialog"> |
---|
| 29 | <table> |
---|
| 30 | <tbody> |
---|
| 31 | |
---|
| 32 | <tr class="prop"> |
---|
| 33 | <td valign="top" class="name"> |
---|
| 34 | <label for="description">Description:</label> |
---|
| 35 | </td> |
---|
| 36 | <td valign="top" class="value ${hasErrors(bean:lifePlanInstance,field:'description','errors')}"> |
---|
| 37 | <input type="text" id="description" name="description" value="${fieldValue(bean:lifePlanInstance,field:'description')}"/> |
---|
| 38 | </td> |
---|
| 39 | </tr> |
---|
| 40 | |
---|
| 41 | <tr class="prop"> |
---|
| 42 | <td valign="top" class="name"> |
---|
| 43 | <label for="isActive">Is Active:</label> |
---|
| 44 | </td> |
---|
| 45 | <td valign="top" class="value ${hasErrors(bean:lifePlanInstance,field:'isActive','errors')}"> |
---|
| 46 | <g:checkBox name="isActive" value="${lifePlanInstance?.isActive}" ></g:checkBox> |
---|
| 47 | </td> |
---|
| 48 | </tr> |
---|
| 49 | |
---|
| 50 | <tr class="prop"> |
---|
| 51 | <td valign="top" class="name"> |
---|
| 52 | <label for="name">Name:</label> |
---|
| 53 | </td> |
---|
| 54 | <td valign="top" class="value ${hasErrors(bean:lifePlanInstance,field:'name','errors')}"> |
---|
| 55 | <input type="text" id="name" name="name" value="${fieldValue(bean:lifePlanInstance,field:'name')}"/> |
---|
| 56 | </td> |
---|
| 57 | </tr> |
---|
| 58 | |
---|
| 59 | </tbody> |
---|
| 60 | </table> |
---|
| 61 | </div> |
---|
| 62 | <div class="buttons"> |
---|
| 63 | <span class="button"><g:actionSubmit class="save" value="Update" /></span> |
---|
| 64 | <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span> |
---|
| 65 | </div> |
---|
| 66 | </g:form> |
---|
| 67 | </div> |
---|
| 68 | </body> |
---|
| 69 | </html> |
---|