Pflichtenhefte: Druckvorlagendateinamen bei Pflicthenhefttypen festlegen können
[kivitendo-erp.git] / templates / webpages / requirement_spec_type / form.html
1 [% USE HTML %][% USE L %][% USE LxERP %]
2
3  <form method="post" action="controller.pl">
4   <div class="listtop">[% FORM.title %]</div>
5
6 [%- INCLUDE 'common/flash.html' %]
7
8   <table>
9    <tr>
10     <td>[% LxERP.t8('Description') %]</td>
11     <td>[% L.input_tag("requirement_spec_type.description", SELF.requirement_spec_type.description) %]</td>
12    </tr>
13
14    <tr>
15     <td>[% LxERP.t8('Print template base file name') %]<sup>(1)</sup></td>
16     <td>[% L.input_tag("requirement_spec_type.template_file_name", SELF.requirement_spec_type.template_file_name) %]</td>
17    </tr>
18   </table>
19
20   <p>
21    [% L.hidden_tag("id", SELF.requirement_spec_type.id) %]
22    [% L.hidden_tag("action", "RequirementSpecType/dispatch") %]
23    [% L.submit_tag("action_" _ (SELF.requirement_spec_type.id ? "update" : "create"), LxERP.t8('Save')) %]
24    [%- IF SELF.requirement_spec_type.id %]
25     [% L.submit_tag("action_destroy", LxERP.t8('Delete'), confirm=LxERP.t8('Do you really want to delete this object?')) %]
26    [%- END %]
27    <a href="[% SELF.url_for(action => 'list') %]">[%- LxERP.t8('Abort') %]</a>
28   </p>
29
30   <p>
31    <sup>(1)</sup>: [% LxERP.t8("The base file name without a path or an extension to be used for printing for this type of requirement spec.") %]
32   </p>
33  </form>