Pflichtenhefte: Erste Version Baumansicht Textblöcke/Abschnitte/Funktionsblöcke
[kivitendo-erp.git] / templates / webpages / requirement_spec_item / _section_form.html
1 [%- USE HTML %][%- USE L %][%- USE LxERP %]
2 [%- SET id_base="section-form-" _ HTML.escape(id) %]
3 [%- IF title %]
4  <div class="listtop">[%- HTML.escape(title) %]</div>
5 [%- END -%]
6
7 <form id="[% id_base %]">
8  [% L.hidden_tag("requirment_spec_id", SELF.item.requirement_spec_id, id=(id_base _ "-requirement-spec-id")) %]
9
10  <p>
11   [%- LxERP.t8("Title") %]:<br>
12   [% L.input_tag("title", SELF.item.title, id=(id_base _ "-title")) %]
13  </p>
14
15  <p>
16   [%- LxERP.t8("Description") %]:<br>
17   [% L.textarea_tag("description", SELF.item.description, id=(id_base _ "-title"), rows=8, cols=80) %]
18  </p>
19
20  <p>
21   [% L.button_tag("submit_section_form('" _ HTML.escape(id) _ "')", LxERP.t8("Save")) %]
22   [% L.button_tag("cancel_section_form('" _ HTML.escape(id) _ "')", LxERP.t8("Cancel")) %]
23  </p>
24 </form>