- Timestamp:
- 15 Nov 2012, 22:10:45 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/reportscontainercreate.pt
r9633 r9641 1 <div i18n:domain="waeup.kofa"> 2 <h2 i18n:translate="">Create Report</h2> 3 <div class="row"> 4 <div class="span8 columns"> 5 <div class="span8 columns"> 6 <p i18n:translate=""> 7 Here you can create reports representing portal data. 8 </p> 9 <p i18n:translate=""> 10 Please pick the type of report you want to create from the 11 selection below. 12 </p> 13 <p i18n:translate=""> 14 Afterwards you can configure the report (do the settings). 15 The report data will be calculated and then made available 16 for you to view/download. 17 </p> 1 <form i18n:domain="waeup.kofa" method="POST"> 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. 9 </p> 10 <br /> 11 <div class="clearfix"> 12 <label for="generator">Report Type:</label> 13 <div class="input"> 14 <select name="generator"> 15 <span tal:repeat="items view/creators" tal:omit-tag=""> 16 <option 17 tal:define="name python: items[1]; title python: items[0]" 18 tal:attributes="value name"> 19 <span tal:replace="title">TITLE</span> 20 </option> 21 </span> 22 </select> 23 <div class="help-inline" i18n:translate=""> 24 Type of report to create 18 25 </div> 19 <form method="POST">20 <fieldset>21 22 <div class="clearfix">23 <label for="generator">Report Type:</label>24 <div class="input">25 <select name="generator">26 <span tal:repeat="items view/creators" tal:omit-tag="">27 <option28 tal:define="name python: items[1]; title python: items[0]"29 tal:attributes="value name">30 <span tal:replace="title">TITLE</span>31 </option>32 </span>33 </select>34 <span class="help-inline" i18n:translate="">35 Type of report to create36 </span>37 </div>38 39 </div>40 <div class="input">41 <input i18n:translate="" type="submit" class="btn primary"42 name="START_GENERATOR" value="Configure" />43 </div>44 45 </fieldset>46 </form>47 48 26 </div> 49 27 </div> 50 </div> 28 <div class="input"> 29 <input i18n:translate="" type="submit" class="btn primary" 30 name="START_GENERATOR" value="Configure" /> 31 <a class="btn secondary" href="" 32 tal:attributes="href python:view.url(context)">Cancel</a> 33 </div> 34 </form>
Note: See TracChangeset for help on using the changeset viewer.