source: trunk/grails-app/views/department/edit.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>Edit Department</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">Department List</g:link></span>
13            <span class="menuButton"><g:link class="create" action="create">New Department</g:link></span>
14        </div>
15        <div class="body">
16            <h1>Edit Department</h1>
17            <g:if test="${flash.message}">
18            <div class="message">${flash.message}</div>
19            </g:if>
20            <g:hasErrors bean="${departmentInstance}">
21            <div class="errors">
22                <g:renderErrors bean="${departmentInstance}" as="list" />
23            </div>
24            </g:hasErrors>
25            <g:form method="post" >
26                <input type="hidden" name="id" value="${departmentInstance?.id}" />
27                <input type="hidden" name="version" value="${departmentInstance?.version}" />
28                <div class="dialog">
29                    <table>
30                        <tbody>
31                       
32                            <tr class="prop">
33                                <td valign="top" class="name">
34                                    <label for="costCode">Cost Code:</label>
35                                </td>
36                                <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'costCode','errors')}">
37                                    <input type="text" id="costCode" name="costCode" value="${fieldValue(bean:departmentInstance,field:'costCode')}"/>
38                                </td>
39                            </tr>
40                       
41                            <tr class="prop">
42                                <td valign="top" class="name">
43                                    <label for="description">Description:</label>
44                                </td>
45                                <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'description','errors')}">
46                                    <input type="text" id="description" name="description" value="${fieldValue(bean:departmentInstance,field:'description')}"/>
47                                </td>
48                            </tr>
49                       
50                            <tr class="prop">
51                                <td valign="top" class="name">
52                                    <label for="isActive">Is Active:</label>
53                                </td>
54                                <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'isActive','errors')}">
55                                    <g:checkBox name="isActive" value="${departmentInstance?.isActive}" ></g:checkBox>
56                                </td>
57                            </tr>
58                       
59                            <tr class="prop">
60                                <td valign="top" class="name">
61                                    <label for="name">Name:</label>
62                                </td>
63                                <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'name','errors')}">
64                                    <input type="text" id="name" name="name" value="${fieldValue(bean:departmentInstance,field:'name')}"/>
65                                </td>
66                            </tr>
67                       
68                            <tr class="prop">
69                                <td valign="top" class="name">
70                                    <label for="systemSections">System Sections:</label>
71                                </td>
72                                <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'systemSections','errors')}">
73                                   
74<ul>
75<g:each var="s" in="${departmentInstance?.systemSections?}">
76    <li><g:link controller="systemSection" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li>
77</g:each>
78</ul>
79<g:link controller="systemSection" params="['department.id':departmentInstance?.id]" action="create">Add SystemSection</g:link>
80
81                                </td>
82                            </tr>
83                       
84                        </tbody>
85                    </table>
86                </div>
87                <div class="buttons">
88                    <span class="button"><g:actionSubmit class="save" value="Update" /></span>
89                    <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
90                </div>
91            </g:form>
92        </div>
93    </body>
94</html>
Note: See TracBrowser for help on using the repository browser.