source: trunk/grails-app/views/systemSectionDetailed/create.gsp @ 162

Last change on this file since 162 was 162, checked in by gav, 14 years ago

Add Department domain class, controller, views and demo data.
Add costCode and department attributes to SystemSection? and regen non-detailed controller and views, adjust detailed views to suite.

File size: 4.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 SystemSection</title>         
8    </head>
9    <body>
10        <div class="nav">
11            <span class="menuButton"><a class="home" href="${resource(dir:'')}">Home</a></span>
12            <span class="menuButton"><g:link class="list" action="list">SystemSection List</g:link></span>
13        </div>
14        <div class="body">
15            <h1>Create SystemSection</h1>
16            <g:if test="${flash.message}">
17            <div class="message">${flash.message}</div>
18            </g:if>
19            <g:hasErrors bean="${systemSectionInstance}">
20            <div class="errors">
21                <g:renderErrors bean="${systemSectionInstance}" 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="name">Name:</label>
32                                </td>
33                                <td valign="top" class="value ${hasErrors(bean:systemSectionInstance,field:'name','errors')}">
34                                    <input type="text" id="name" name="name" value="${fieldValue(bean:systemSectionInstance,field:'name')}"/>
35                                </td>
36                            </tr>
37                       
38                            <tr class="prop">
39                                <td valign="top" class="name">
40                                    <label for="description">Description:</label>
41                                </td>
42                                <td valign="top" class="value ${hasErrors(bean:systemSectionInstance,field:'description','errors')}">
43                                    <input type="text" id="description" name="description" value="${fieldValue(bean:systemSectionInstance,field:'description')}"/>
44                                </td>
45                            </tr>
46                       
47                            <tr class="prop">
48                                <td valign="top" class="name">
49                                    <label for="costCode">Cost Code:</label>
50                                </td>
51                                <td valign="top" class="value ${hasErrors(bean:systemSectionInstance,field:'costCode','errors')}">
52                                    <input type="text" id="costCode" name="costCode" value="${fieldValue(bean:systemSectionInstance,field:'costCode')}"/>
53                                </td>
54                            </tr>
55                       
56                            <tr class="prop">
57                                <td valign="top" class="name">
58                                    <label for="department">Department:</label>
59                                </td>
60                                <td valign="top" class="value ${hasErrors(bean:systemSectionInstance,field:'department','errors')}">
61                                    <g:select optionKey="id" from="${Department.list()}" name="department.id" value="${systemSectionInstance?.department?.id}" ></g:select>
62                                </td>
63                            </tr>
64                       
65                            <tr class="prop">
66                                <td valign="top" class="name">
67                                    <label for="site">Site:</label>
68                                </td>
69                                <td valign="top" class="value ${hasErrors(bean:systemSectionInstance,field:'site','errors')}">
70                                    <g:select optionKey="id" from="${Site.list()}" name="site.id" value="${systemSectionInstance?.site?.id}" ></g:select>
71                                </td>
72                            </tr>
73                       
74                            <tr class="prop">
75                                <td valign="top" class="name">
76                                    <label for="isActive">Is Active:</label>
77                                </td>
78                                <td valign="top" class="value ${hasErrors(bean:systemSectionInstance,field:'isActive','errors')}">
79                                    <g:checkBox name="isActive" value="${systemSectionInstance?.isActive}" ></g:checkBox>
80                                </td>
81                            </tr>
82                       
83                        </tbody>
84                    </table>
85                </div>
86                <div class="buttons">
87                    <span class="button"><input class="save" type="submit" value="Create" /></span>
88                </div>
89            </g:form>
90        </div>
91    </body>
92</html>
Note: See TracBrowser for help on using the repository browser.