Changeset 417 for trunk/grails-app/views/importer/index.gsp
- Timestamp:
- May 12, 2010, 4:09:15 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/importer/index.gsp
r359 r417 13 13 <body> 14 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> 15 <p>Which import wizard do you want to use?</p> 16 17 <ol> 18 <li> 19 <g:link controller="importer" action="simplewizard">Simple wizard</g:link> 20 </li> 21 <li> 22 <g:link controller="importer" action="advancedwizard">Advanced wizard</g:link> 23 </li> 24 </ol> 41 25 42 26 </body>
Note: See TracChangeset
for help on using the changeset viewer.