source: main/waeup.ikoba/trunk/src/waeup/ikoba/documents/browser_templates/documentaddform.pt @ 12226

Last change on this file since 12226 was 12215, checked in by Henrik Bettermann, 10 years ago

Add DocumentTriggerTransitionFormPage?.

Do not add document without editing document title.

File size: 903 bytes
Line 
1<form action="." tal:attributes="action request/URL" method="post"
2      enctype="multipart/form-data" i18n:domain="waeup.ikoba">
3  <table class="form-table">
4    <tbody>
5      <tr>
6        <td class="fieldname">
7          <span i18n:translate="">Document Type</span>:
8        </td>
9        <td>
10          <select id="doctype" name="doctype" size="1"
11                  class="form-control half">
12            <option tal:repeat="item view/selectable_doctypes"
13                    tal:attributes="value python:item[0]">
14              <span tal:replace="python:item[1]">DOCTYPE</span>
15            </option>
16          </select>
17        </td>
18      </tr>
19      <tal:widgets content="structure provider:widgets" />
20    </tbody>
21  </table>
22  <div tal:condition="view/availableActions">
23    <input tal:repeat="action view/actions"
24           tal:replace="structure action/render"
25           />
26  </div>
27</form>
Note: See TracBrowser for help on using the repository browser.