Pflichtenheftpunkte bearbeiten
[kivitendo-erp.git] / templates / webpages / requirement_spec_item / _section_form.html
1 [%- USE HTML %][%- USE L %][%- USE LxERP %]
2 [%- SET id_base="section-form" %]
3 <div id="[% id_base %]">
4  <h1>[%- LxERP.t8("Edit section #1", SELF.item.fb_number) %]</h1>
5
6  <form>
7   [% L.hidden_tag("requirement_spec_id", SELF.item.requirement_spec_id, id=(id_base _ "-requirement-spec-id")) %]
8   [% L.hidden_tag("id", SELF.item.id, id=(id_base _ "-requirement-spec-item-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 _ "-description"), rows=8, cols=80) %]
18   </p>
19
20   <p>
21    [% L.button_tag("submit_section_form()", LxERP.t8("Save")) %]
22    <a href="#" onclick="cancel_section_form()">[% LxERP.t8("Cancel") %]</a>
23   </p>
24  </form>
25 </div>