Merge branch 'b-3.6.1' into mebil
[kivitendo-erp.git] / templates / webpages / simple_system_setting / _requirement_spec_predefined_text_form.html
1 [%- USE LxERP -%][%- USE L -%]<table>
2  <tr>
3   <th align="right">[% LxERP.t8("Description") %]</th>
4   <td>[% L.input_tag("object.description", SELF.object.description, size=60, class="initial_focus", "data-validate"="required", "data-title"=LxERP.t8("Description")) %]</td>
5  </tr>
6
7  <tr>
8   <th align="right">[% LxERP.t8("Title") %]</th>
9   <td>[% L.input_tag("object.title", SELF.object.title, size=60) %]</td>
10  </tr>
11
12  <tr valign="top">
13   <th align="right">[% LxERP.t8("Content") %]</th>
14   <td>[% L.textarea_tag("object.text_as_restricted_html", SELF.object.text_as_restricted_html, class="texteditor", style="width: 800px; height: 300px") %]</td>
15  </tr>
16
17  <tr>
18   <th align="right">[% LxERP.t8("Useable for…") %]</th>
19   <td>
20    [% L.checkbox_tag("object.useable_for_text_blocks", label=LxERP.t8("Text blocks"), for_submit=1, value=1, checked=SELF.object.useable_for_text_blocks) %]
21    [% L.checkbox_tag("object.useable_for_sections",    label=LxERP.t8("Sections"),    for_submit=1, value=1, checked=SELF.object.useable_for_sections) %]
22   </td>
23  </tr>
24 </table>