source: trunk/grails-app/views/importer/index_simple.gsp @ 417

Last change on this file since 417 was 417, checked in by tabma, 14 years ago
  • split up the templates in 'simple' and 'advanced' and created a new index page for the Import Wizard
File size: 1.1 KB
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 (simple)</title>
12  </head>
13  <body>
14    <h1>Importer wizard (simple)</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                Choose your study:
29            </td>
30            <td>
31                <g:select name="study_id" from="${studies}" optionKey="id"/>
32            </td>
33        </tr>
34        <tr>
35            <td>
36                Choose type of data:
37            </td>
38            <td>
39                <g:select name="entity" from="${entities}"/>
40            </td>
41        </tr>
42        <tr>
43            <td colspan="2">
44                <input type="submit" value="Next"/>
45            </td>
46        </tr>
47        </table>
48        </g:form>
49
50  </body>
51</html>
Note: See TracBrowser for help on using the repository browser.