source: trunk/grails-app/views/assetDetailed/importAssetTree.gsp @ 271

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

Regenerate asset views and detail views to suite.
Add CsvService, import and copy functions with appropriate messages and gsp's.

File size: 1.4 KB
Line 
1<html>
2    <head>
3        <meta name="layout" content="main" />
4        <title>Import Asset Tree</title>
5        <nav:resources override="true"/>
6        <g:render template="/shared/pictureHead" />
7    </head>
8    <body>
9        <div class="nav">
10            <h1>Import Asset Tree</h1>
11        </div>
12        <div class="body">
13            <g:render template="/shared/messages" />
14            <g:uploadForm action="importAssetTreeSave" enctype="multipart/form-data" onsubmit="return Lightbox.loading();">
15                <div class="dialog">
16                    <table>
17                        <tbody>
18                            <tr class="prop">
19                                <td valign="top" class="name">
20                                    <label for="file">File:</label>
21                                </td>
22                                <td valign="top" class="value ${hasErrors(bean: picture, field: 'file', 'errors')}">
23                                    <input type="file" id="file" name="file" size="40"/>
24                                </td>
25                            </tr>
26                        </tbody>
27                    </table>
28                </div>
29                <div class="buttons">
30                    <span class="button"><input class="save" type="submit" value="Create" /></span>
31                </div>
32            </g:uploadForm>
33        </div>
34    </body>
35</html>
Note: See TracBrowser for help on using the repository browser.