source: trunk/grails-app/views/lifePlan/create.gsp @ 118

Last change on this file since 118 was 118, checked in by gav, 15 years ago

First commit of Asset domain, including domain-classes, controllers, views and bootstrap.

File size: 9.8 KB
Line 
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>Create LifePlan</title>         
8    </head>
9    <body>
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">LifePlan List</g:link></span>
13        </div>
14        <div class="body">
15            <h1>Create LifePlan</h1>
16            <g:if test="${flash.message}">
17            <div class="message">${flash.message}</div>
18            </g:if>
19            <g:hasErrors bean="${lifePlanInstance}">
20            <div class="errors">
21                <g:renderErrors bean="${lifePlanInstance}" as="list" />
22            </div>
23            </g:hasErrors>
24            <g:form action="save" method="post" >
25                <div class="dialog">
26                    <table>
27                        <tbody>
28                       
29                            <tr class="prop">
30                                <td valign="top" class="name">
31                                    <label for="asset">Asset:</label>
32                                </td>
33                                <td valign="top" class="value ${hasErrors(bean:lifePlanInstance,field:'asset','errors')}">
34                                    <g:select optionKey="id" from="${Asset.list()}" name="asset.id" value="${lifePlanInstance?.asset?.id}" noSelection="['null':'']"></g:select>
35                                </td>
36                            </tr>
37                       
38                            <tr class="prop">
39                                <td valign="top" class="name">
40                                    <label for="form">Form:</label>
41                                </td>
42                                <td valign="top" class="value ${hasErrors(bean:lifePlanInstance,field:'form','errors')}">
43                                    <g:select optionKey="id" from="${Form.list()}" name="form.id" value="${lifePlanInstance?.form?.id}" noSelection="['null':'']"></g:select>
44                                </td>
45                            </tr>
46                       
47                            <tr class="prop">
48                                <td valign="top" class="name">
49                                    <label for="frequency">Frequency:</label>
50                                </td>
51                                <td valign="top" class="value ${hasErrors(bean:lifePlanInstance,field:'frequency','errors')}">
52                                    <g:select optionKey="id" from="${Frequency.list()}" name="frequency.id" value="${lifePlanInstance?.frequency?.id}" noSelection="['null':'']"></g:select>
53                                </td>
54                            </tr>
55                       
56                            <tr class="prop">
57                                <td valign="top" class="name">
58                                    <label for="assetType">Asset Type:</label>
59                                </td>
60                                <td valign="top" class="value ${hasErrors(bean:lifePlanInstance,field:'assetType','errors')}">
61                                    <g:select optionKey="id" from="${AssetType.list()}" name="assetType.id" value="${lifePlanInstance?.assetType?.id}" noSelection="['null':'']"></g:select>
62                                </td>
63                            </tr>
64                       
65                            <tr class="prop">
66                                <td valign="top" class="name">
67                                    <label for="assembly">Assembly:</label>
68                                </td>
69                                <td valign="top" class="value ${hasErrors(bean:lifePlanInstance,field:'assembly','errors')}">
70                                    <g:select optionKey="id" from="${Assembly.list()}" name="assembly.id" value="${lifePlanInstance?.assembly?.id}" noSelection="['null':'']"></g:select>
71                                </td>
72                            </tr>
73                       
74                            <tr class="prop">
75                                <td valign="top" class="name">
76                                    <label for="subAssembly">Sub Assembly:</label>
77                                </td>
78                                <td valign="top" class="value ${hasErrors(bean:lifePlanInstance,field:'subAssembly','errors')}">
79                                    <g:select optionKey="id" from="${SubAssembly.list()}" name="subAssembly.id" value="${lifePlanInstance?.subAssembly?.id}" noSelection="['null':'']"></g:select>
80                                </td>
81                            </tr>
82                       
83                            <tr class="prop">
84                                <td valign="top" class="name">
85                                    <label for="componentItem">Component Item:</label>
86                                </td>
87                                <td valign="top" class="value ${hasErrors(bean:lifePlanInstance,field:'componentItem','errors')}">
88                                    <g:select optionKey="id" from="${ComponentItem.list()}" name="componentItem.id" value="${lifePlanInstance?.componentItem?.id}" noSelection="['null':'']"></g:select>
89                                </td>
90                            </tr>
91                       
92                            <tr class="prop">
93                                <td valign="top" class="name">
94                                    <label for="description">Description:</label>
95                                </td>
96                                <td valign="top" class="value ${hasErrors(bean:lifePlanInstance,field:'description','errors')}">
97                                    <input type="text" id="description" name="description" value="${fieldValue(bean:lifePlanInstance,field:'description')}"/>
98                                </td>
99                            </tr>
100                       
101                            <tr class="prop">
102                                <td valign="top" class="name">
103                                    <label for="isActive">Is Active:</label>
104                                </td>
105                                <td valign="top" class="value ${hasErrors(bean:lifePlanInstance,field:'isActive','errors')}">
106                                    <g:checkBox name="isActive" value="${lifePlanInstance?.isActive}" ></g:checkBox>
107                                </td>
108                            </tr>
109                       
110                            <tr class="prop">
111                                <td valign="top" class="name">
112                                    <label for="maintenanceAction">Maintenance Action:</label>
113                                </td>
114                                <td valign="top" class="value ${hasErrors(bean:lifePlanInstance,field:'maintenanceAction','errors')}">
115                                    <input type="text" id="maintenanceAction" name="maintenanceAction" value="${fieldValue(bean:lifePlanInstance,field:'maintenanceAction')}"/>
116                                </td>
117                            </tr>
118                       
119                            <tr class="prop">
120                                <td valign="top" class="name">
121                                    <label for="name">Name:</label>
122                                </td>
123                                <td valign="top" class="value ${hasErrors(bean:lifePlanInstance,field:'name','errors')}">
124                                    <input type="text" id="name" name="name" value="${fieldValue(bean:lifePlanInstance,field:'name')}"/>
125                                </td>
126                            </tr>
127                       
128                            <tr class="prop">
129                                <td valign="top" class="name">
130                                    <label for="notes">Notes:</label>
131                                </td>
132                                <td valign="top" class="value ${hasErrors(bean:lifePlanInstance,field:'notes','errors')}">
133                                    <input type="text" id="notes" name="notes" value="${fieldValue(bean:lifePlanInstance,field:'notes')}"/>
134                                </td>
135                            </tr>
136                       
137                            <tr class="prop">
138                                <td valign="top" class="name">
139                                    <label for="resourceNumber">Resource Number:</label>
140                                </td>
141                                <td valign="top" class="value ${hasErrors(bean:lifePlanInstance,field:'resourceNumber','errors')}">
142                                    <input type="text" id="resourceNumber" name="resourceNumber" value="${fieldValue(bean:lifePlanInstance,field:'resourceNumber')}"/>
143                                </td>
144                            </tr>
145                       
146                            <tr class="prop">
147                                <td valign="top" class="name">
148                                    <label for="timeInHours">Time In Hours:</label>
149                                </td>
150                                <td valign="top" class="value ${hasErrors(bean:lifePlanInstance,field:'timeInHours','errors')}">
151                                    <input type="text" id="timeInHours" name="timeInHours" value="${fieldValue(bean:lifePlanInstance,field:'timeInHours')}" />
152                                </td>
153                            </tr>
154                       
155                        </tbody>
156                    </table>
157                </div>
158                <div class="buttons">
159                    <span class="button"><input class="save" type="submit" value="Create" /></span>
160                </div>
161            </g:form>
162        </div>
163    </body>
164</html>
Note: See TracBrowser for help on using the repository browser.