- Timestamp:
- 9 Oct 2012, 10:29:49 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/datacenteruploadpage.pt
r9311 r9322 1 1 <form method="post" enctype="multipart/form-data"> 2 <input type="file" name="uploadfile:file" /> 3 <br /><br /> 4 <div> 5 <input class="btn primary" type="submit" name="SUBMIT" 6 tal:attributes="value view/upload_button" /> 7 <input class="btn" type="submit" name="CANCEL" 8 tal:attributes="value view/cancel_button"/> 9 </div> 2 <br /> 3 <table class="form-table"> 4 <tr> 5 <td i18n:translate=""> 6 File: 7 </td> 8 <td> 9 <input type="file" size=47 name="uploadfile:file" /> 10 </td> 11 </tr> 12 <tr> 13 <td i18n:translate=""> 14 Processor: 15 </td> 16 <td> 17 <select name="importer"> 18 <option tal:repeat="importer view/getImporters" 19 tal:attributes="value importer/title" 20 tal:content="importer/title"> Some Importer 21 </option> 22 </select> 23 </td> 24 </tr> 25 <tr> 26 <td i18n:translate=""> 27 Import Mode: 28 </td> 29 <td> 30 <select name="import_mode"> 31 <option value='Create'>Create</option> 32 <option value='Update'>Update</option> 33 <option value='Remove'>Remove</option> 34 </select> 35 </td> 36 </tr> 37 <tr> 38 <td i18n:translate=""> 39 <input class="btn primary" type="submit" name="SUBMIT" 40 tal:attributes="value view/upload_button" /> 41 <input class="btn" type="submit" name="CANCEL" 42 tal:attributes="value view/cancel_button"/> 43 </td> 44 <td> 45 </td> 46 </tr> 47 </table> 10 48 </form> 11 49 12 50 <p i18n:translate=""> 13 51 Import managers will be automatically informed by email after file upload. 14 There is no need for assigning trac tickets anymore. 52 There is no need for assigning trac tickets or sending emails anymore. 53 The data will be imported according to the information given. 15 54 </p> 16 55
Note: See TracChangeset for help on using the changeset viewer.