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

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

First asset tree import working and created a site.

File size: 1.3 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" 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">
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.