Changeset 9643 for main/waeup.kofa
- Timestamp:
- 16 Nov 2012, 00:07:29 (12 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/reportscontainercreate.pt
r9641 r9643 1 1 <form i18n:domain="waeup.kofa" method="POST"> 2 2 <p i18n:translate=""> 3 Here you can create reports representing portal data. 4 Please pick the type of report you want to create from the 5 selection below. 6 Afterwards you can configure the report (do the settings). 7 The report data will be calculated and then made available 8 for you to view/download. 3 Here you can create reports representing portal data. Please pick 4 the type of report you want to create from the selection below. 5 Afterwards you can configure the report (do the settings). The 6 report data will be calculated and then made available for you to 7 view/download. 9 8 </p> 10 9 <br /> … … 14 13 <select name="generator"> 15 14 <span tal:repeat="items view/creators" tal:omit-tag=""> 16 <option17 tal:define="name python: items[1]; title python: items[0]"18 tal:attributes="value name">19 <span tal:replace="title">TITLE</span>20 </option>15 <option 16 tal:define="name python: items[1]; title python: items[0]" 17 tal:attributes="value name"> 18 <span tal:replace="title">TITLE</span> 19 </option> 21 20 </span> 22 21 </select> … … 28 27 <div class="input"> 29 28 <input i18n:translate="" type="submit" class="btn primary" 30 name="START_GENERATOR" value="Configure" />29 name="START_GENERATOR" value="Configure" /> 31 30 <a class="btn secondary" href="" 32 31 tal:attributes="href python:view.url(context)">Cancel</a> -
main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/reportscontainerpage.pt
r9641 r9643 1 1 <form method="POST" i18n:domain="waeup.kofa"> 2 2 <table> 3 <thead>4 5 6 <th i18n:translate="">Description</th>7 <th i18n:translate="">Status</th>8 <th> </th>9 10 </thead>3 <thead> 4 <tr> 5 <th i18n:translate="">Report Number</th> 6 <th i18n:translate="">Description</th> 7 <th i18n:translate="">Status</th> 8 <th> </th> 9 </tr> 10 </thead> 11 11 <tbody> 12 12 <tr tal:repeat="entry view/entries"> … … 22 22 <td> 23 23 <form method="POST"> 24 <input type="hidden" name="job_id"25 tal:attributes="value python: entry[0]" />26 <input type="submit" class="btn secondary"27 name="DISCARD" value="Discard"28 tal:condition="python: entry[3]" />29 <input type="submit" class="btn primary"30 name="DOWNLOAD" value="Download"31 tal:condition="python: entry[4]" />24 <input type="hidden" name="job_id" 25 tal:attributes="value python: entry[0]" /> 26 <input type="submit" class="btn secondary" 27 name="DISCARD" value="Discard" 28 tal:condition="python: entry[3]" /> 29 <input type="submit" class="btn primary" 30 name="DOWNLOAD" value="Download" 31 tal:condition="python: entry[4]" /> 32 32 </form> 33 33 </td> -
main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/studentreportgeneratorpage.pt
r9641 r9643 1 1 <form i18n:domain="waeup.kofa" method="POST"> 2 2 <p i18n:translate=""> 3 Please pick the session for which the report should be 4 generated. 5 The report data will be calculated and then made available 6 for you to view/download. 3 Please pick the session for which the report should be generated. 4 The report data will be calculated and then made available for you 5 to view/download. 7 6 </p> 8 7 <br /> … … 12 11 <select name="session"> 13 12 <span tal:repeat="items view/sessions" tal:omit-tag=""> 14 <option15 tal:define="name python: items[1]; title python: items[0]"16 tal:attributes="value name">17 <span tal:replace="title">TITLE</span>18 </option>13 <option 14 tal:define="name python: items[1]; title python: items[0]" 15 tal:attributes="value name"> 16 <span tal:replace="title">TITLE</span> 17 </option> 19 18 </span> 20 19 </select> … … 26 25 <div class="input"> 27 26 <input i18n:translate="" type="submit" class="btn primary" 28 name="CREATE" value="Create" />27 name="CREATE" value="Create" /> 29 28 <a class="btn secondary" href="" 30 29 tal:attributes="href view/parent_url">Cancel</a> 31 30 </div> 32 31 </form> 33
Note: See TracChangeset for help on using the changeset viewer.