- Timestamp:
- 1 Feb 2014, 08:20:23 (11 years ago)
- Location:
- main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/browser/templates
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/browser/templates/reportscontainercreate.pt
r9643 r11025 8 8 </p> 9 9 <br /> 10 <div class="clearfix"> 11 <label for="generator">Report Type:</label> 12 <div class="input"> 13 <select name="generator"> 14 <span tal:repeat="items view/creators" tal:omit-tag=""> 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> 20 </span> 21 </select> 22 <div class="help-inline" i18n:translate=""> 23 Type of report to create 24 </div> 25 </div> 10 <div class="form-group"> 11 <label for="generator">Report Type</label> 12 <select name="generator" class="form-control"> 13 <span tal:repeat="items view/creators" tal:omit-tag=""> 14 <option 15 tal:define="name python: items[1]; title python: items[0]" 16 tal:attributes="value name"> 17 <span tal:replace="title">TITLE</span> 18 </option> 19 </span> 20 </select> 26 21 </div> 27 <div class=" input">28 <input i18n:translate="" type="submit" class="btn primary"22 <div class="form-group"> 23 <input i18n:translate="" type="submit" class="btn btn-primary" 29 24 name="START_GENERATOR" value="Configure" /> 30 <a class="btn secondary" href=""25 <a class="btn btn-default" href="" 31 26 tal:attributes="href python:view.url(context)">Cancel</a> 32 27 </div> -
main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/browser/templates/reportscontainerpage.pt
r9840 r11025 1 <table i18n:domain="waeup.kofa" >1 <table i18n:domain="waeup.kofa" class="table"> 2 2 <thead> 3 3 <tr> … … 31 31 <input type="hidden" name="job_id" 32 32 tal:attributes="value python: entry[0]" /> 33 <input type="submit" class="btn smallprimary"33 <input type="submit" class="btn btn-sm btn-primary" 34 34 name="DOWNLOAD" value="Download" 35 35 tal:condition="python: entry[4]" /> 36 <input type="submit" class="btn small secondary"36 <input type="submit" class="btn btn-sm btn-default" 37 37 name="DISCARD" value="Discard" 38 38 tal:condition="python: entry[3]" /> 39 <a href="" class="btn " i18n:translate=""39 <a href="" class="btn btn-sm btn-default" i18n:translate="" 40 40 tal:condition="python: entry[5]"> 41 41 <img tal:attributes="src static/actionicon_reload.png" /> … … 48 48 </table> 49 49 <form method="POST" i18n:domain="waeup.kofa"> 50 <div class="span12"> 51 <a href="create" class="btn primary" i18n:translate=""> 52 Create new report 53 </a> 54 </div> 50 <a tal:attributes="href python:view.url(context, 'create')" 51 class="btn btn-primary" i18n:translate=""> 52 Create new report 53 </a> 55 54 </form>
Note: See TracChangeset for help on using the changeset viewer.