source: main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/reportscontainercreate.pt @ 11254

Last change on this file since 11254 was 11254, checked in by uli, 11 years ago

Merge changes from uli-diazo-themed back into trunk. If this works, then a miracle happened.

File size: 1.1 KB
Line 
1<form  i18n:domain="waeup.kofa"  method="POST">
2  <p i18n:translate="">
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.
8  </p>
9  <br />
10  <div class="form-group">
11    <label for="generator">Report Type</label>
12    <select name="generator" class="form-control half">
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>
21  </div>
22  <div class="form-group">
23    <input i18n:translate="" type="submit" class="btn btn-primary"
24           name="START_GENERATOR" value="Configure" />
25    <a class="btn btn-default" href=""
26       tal:attributes="href python:view.url(context)">Cancel</a>
27  </div>
28</form>
Note: See TracBrowser for help on using the repository browser.