source: trunk/grails-app/views/assetDetailed/create.gsp @ 139

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

Install Navigation plugin, work on navigation and hopefully fixed a few more IE vs Firefox CSS issues.
New skin for class-diagram plugin.
Adjust security config to suite.
Replace home.gsp with start.gsp, remove options.gsp and acknowledgements.gsp as they are now on start.gsp tabs.
Create search pages for Tasks, Assets and Inventory.
Change suggested login to manager.
Change all date formats to format="EEE, dd-MMM-yyyy".

File size: 4.0 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 Asset</title>   
8        <nav:resources override="true"/>
9    </head>
10    <body>
11        <div class="nav">
12            <nav:renderSubItems group="nav"/>
13        </div>
14        <div class="body">
15            <g:if test="${flash.message}">
16            <div class="message">${flash.message}</div>
17            </g:if>
18            <g:hasErrors bean="${assetInstance}">
19            <div class="errors">
20                <g:renderErrors bean="${assetInstance}" as="list" />
21            </div>
22            </g:hasErrors>
23            <g:form action="save" method="post" >
24                <div class="dialog">
25                    <table>
26                        <tbody>
27                       
28                            <tr class="prop">
29                                <td valign="top" class="name">
30                                    <label for="name">Name:</label>
31                                </td>
32                                <td valign="top" class="value ${hasErrors(bean:assetInstance,field:'name','errors')}">
33                                    <input type="text" id="name" name="name" value="${fieldValue(bean:assetInstance,field:'name')}"/>
34                                </td>
35                            </tr>
36                       
37                            <tr class="prop">
38                                <td valign="top" class="name">
39                                    <label for="assetType">Asset Type:</label>
40                                </td>
41                                <td valign="top" class="value ${hasErrors(bean:assetInstance,field:'assetType','errors')}">
42                                    <g:select optionKey="id" from="${AssetType.list()}" name="assetType.id" value="${assetInstance?.assetType?.id}" ></g:select>
43                                </td>
44                            </tr>
45
46                            <tr class="prop">
47                                <td valign="top" class="name">
48                                    <label for="systemSection">System Section:</label>
49                                </td>
50                                <td valign="top" class="value ${hasErrors(bean:assetInstance,field:'systemSection','errors')}">
51                                    <g:select optionKey="id" from="${SystemSection.list()}" name="systemSection.id" value="${assetInstance?.systemSection?.id}" ></g:select>
52                                </td>
53                            </tr>
54                       
55                            <tr class="prop">
56                                <td valign="top" class="name">
57                                    <label for="description">Description:</label>
58                                </td>
59                                <td valign="top" class="value ${hasErrors(bean:assetInstance,field:'description','errors')}">
60                                    <input type="text" id="description" name="description" value="${fieldValue(bean:assetInstance,field:'description')}"/>
61                                </td>
62                            </tr>
63                       
64                            <tr class="prop">
65                                <td valign="top" class="name">
66                                    <label for="isActive">Is Active:</label>
67                                </td>
68                                <td valign="top" class="value ${hasErrors(bean:assetInstance,field:'isActive','errors')}">
69                                    <g:checkBox name="isActive" value="${assetInstance?.isActive}" ></g:checkBox>
70                                </td>
71                            </tr>
72
73                        </tbody>
74                    </table>
75                </div>
76                <div class="buttons">
77                    <span class="button"><input class="save" type="submit" value="Create" /></span>
78                </div>
79            </g:form>
80        </div>
81    </body>
82</html>
Note: See TracBrowser for help on using the repository browser.