Revision 57b58566
Von Moritz Bunkus vor mehr als 10 Jahren hinzugefügt
templates/webpages/requirement_spec/_form.html | ||
---|---|---|
14 | 14 |
<td>[% L.input_tag("requirement_spec.title", SELF.requirement_spec.title, id=id_prefix _ '_title') %]</td> |
15 | 15 |
</tr> |
16 | 16 |
|
17 |
[%- UNLESS SELF.requirement_spec.is_template %] |
|
18 |
|
|
19 | 17 |
<tr> |
20 | 18 |
<td>[% LxERP.t8("Requirement Spec Type") %]</td> |
21 | 19 |
<td>[% L.select_tag("requirement_spec.type_id", SELF.types, default=SELF.requirement_spec.type_id, title_key="description", id=id_prefix _ '_type_id') %]</td> |
22 | 20 |
</tr> |
23 | 21 |
|
22 |
[%- UNLESS SELF.requirement_spec.is_template %] |
|
23 |
|
|
24 | 24 |
<tr> |
25 | 25 |
<td>[% LxERP.t8("Requirement Spec Status") %]</td> |
26 | 26 |
<td>[% L.select_tag("requirement_spec.status_id", SELF.statuses, default=SELF.requirement_spec.status_id, title_key="description", id=id_prefix _ '_status_id') %]</td> |
templates/webpages/requirement_spec/_show_basic_settings.html | ||
---|---|---|
14 | 14 |
<td>[% HTML.escape(SELF.requirement_spec.title) %]</td> |
15 | 15 |
</tr> |
16 | 16 |
|
17 |
[%- UNLESS SELF.requirement_spec.is_template %] |
|
18 |
|
|
19 | 17 |
<tr class="listrow"> |
20 | 18 |
<td>[% LxERP.t8("Requirement Spec Type") %]:</td> |
21 | 19 |
<td>[% HTML.escape(SELF.requirement_spec.type.description) %]</td> |
22 | 20 |
</tr> |
23 | 21 |
|
22 |
[%- UNLESS SELF.requirement_spec.is_template %] |
|
23 |
|
|
24 | 24 |
<tr class="listrow"> |
25 | 25 |
<td>[% LxERP.t8("Requirement Spec Status") %]:</td> |
26 | 26 |
<td>[% HTML.escape(SELF.requirement_spec.status.description) %]</td> |
Auch abrufbar als: Unified diff
Pflichtenheftvorlagen: Typ muss ebenfalls bearbeitbar sein
…weil die Formate für Abschnitts- und Textblocknummern an den Typen
hängen.