source: trunk/grails-app/views/importer/index.gsp @ 215

Last change on this file since 215 was 215, checked in by tabma, 13 years ago
  • added Template chooser, used in the properties page
File size: 952 bytes
Line 
1<!--
2  To change this template, choose Tools | Templates
3  and open the template in the editor.
4-->
5
6<%@ page contentType="text/html;charset=UTF-8" %>
7
8<html>
9  <head>
10    <meta name="layout" content="main"/>
11    <title>Importer wizard</title>
12  </head>
13  <body>
14    <h1>Importer wizard</h1>
15    <p>You can import your Excel data to the server by choosing a file from your local harddisk in the form below.</p>
16        <g:form controller="importer" method="post" action="upload" enctype="multipart/form-data">
17        <table border="0">
18        <tr>
19            <td width="100px">
20                Choose your Excel file to import:
21            </td>
22            <td width="100px">
23                <input type="file" name="importfile"/>
24            </td>
25        </tr>
26        <tr>
27            <td>
28                Template
29            </td>
30            <td>
31                <g:select name="template_id" from="${templates}" optionKey="id"/>
32            </td>
33        </tr>
34        <tr>
35            <td colspan="2">
36                <input type="submit" value="Next"/>
37            </td>
38        </tr>
39        </table>
40        </g:form>
41
42  </body>
43</html>
Note: See TracBrowser for help on using the repository browser.