source: main/waeup.kofa/branches/uli-py3/src/waeup/kofa/applicants/browser_templates/prefillcontainer.pt @ 16045

Last change on this file since 16045 was 13366, checked in by Henrik Bettermann, 9 years ago

Give the names to the dynamic part of pagetemplates.

File size: 1.4 KB
Line 
1<form action="." tal:attributes="action request/URL" method="post"
2      i18n:domain="waeup.kofa" enctype="multipart/form-data"
3      autocomplete="off">
4    <br />
5    <p i18n:translate="prefill">
6        <strong>Technical Note:</strong> An application in create mode can be
7        performed with an empty container. Each time an applicant registers,
8        a new record is being created and a corresponding user account
9        set up. Since each single account creation causes a significant
10        growth of Kofa's database, it is strongly recommended to pre-fill
11        applicants containers with empty application records. This is done
12        in a single transaction and does thus save database volume when
13        application is ongoing.
14    </p>
15    <br />
16    <label i18n:translate="">
17     Pre-fill '<span  i18n:name="code" tal:replace="context/code">CODE</span>' container with
18    </label>
19    <select id="number" name="number" class="form-control half">
20      <option value="10" i18n:translate="">10 empty records</option>
21      <option value="100" i18n:translate="">100 empty records</option>
22      <option value="1000" i18n:translate="">1000 empty records</option>
23      <option value="10000" i18n:translate="">10000 empty records</option>
24    </select>
25    <br /><br />
26    <div tal:condition="view/availableActions">
27      <input tal:repeat="action view/actions"
28             tal:replace="structure action/render"
29             />
30    </div>
31</form>
Note: See TracBrowser for help on using the repository browser.