Pflichtenheft-Grundeinstellungen erst read/only anzeigen, nicht direkt als Maske
[kivitendo-erp.git] / templates / webpages / requirement_spec / _show_basic_settings.html
1 [%- USE HTML -%][%- USE LxERP -%]
2 <div id="basic_settings" class="basic-settings-context-menu">
3  <table>
4   <tr class="listheading">
5    <th colspan="2">
6     [% IF SELF.requirement_spec.is_template %]
7      [% LxERP.t8("Basic Settings for the Requirement Spec Template") %]
8     [% ELSE %]
9      [% LxERP.t8("Basic Settings for the Requirement Spec") %]
10     [% END %]
11    </th>
12   </tr>
13
14   <tr class="listrow">
15    <td>[% LxERP.t8("Title") %]:</td>
16    <td>[% HTML.escape(SELF.requirement_spec.title) %]</td>
17   </tr>
18
19 [%- UNLESS SELF.requirement_spec.is_template %]
20
21   <tr class="listrow">
22    <td>[% LxERP.t8("Requirement Spec Type") %]:</td>
23    <td>[% HTML.escape(SELF.requirement_spec.type.description) %]</td>
24   </tr>
25
26   <tr class="listrow">
27    <td>[% LxERP.t8("Requirement Spec Status") %]:</td>
28    <td>[% HTML.escape(SELF.requirement_spec.status.description) %]</td>
29   </tr>
30
31   <tr class="listrow">
32    <td>[% LxERP.t8("Customer") %]:</td>
33    <td>[% HTML.escape(SELF.requirement_spec.customer.name) %]</td>
34   </tr>
35
36   <tr class="listrow">
37    <td>[% LxERP.t8("Hourly Rate") %]:</td>
38    <td>[% HTML.escape(SELF.requirement_spec.hourly_rate_as_number) %]</td>
39   </tr>
40
41 [%- END %]
42
43  </table>
44 </div>