Revision e1261979
Von Moritz Bunkus vor mehr als 10 Jahren hinzugefügt
templates/webpages/requirement_spec/_edit_time_and_cost_estimate.html | ||
---|---|---|
15 | 15 |
[%# time-cost-estimate-context-menu %] |
16 | 16 |
<table class="time-cost-estimate"> |
17 | 17 |
<tbody> |
18 |
[%- FOREACH section = SELF.requirement_spec.sections %] |
|
18 |
[%- FOREACH section = SELF.requirement_spec.sections_sorted %]
|
|
19 | 19 |
<tr class="listheading"> |
20 | 20 |
<th>[%- LxERP.t8("Function block") %]</th> |
21 | 21 |
<th>[%- LxERP.t8("Complexity") %]</th> |
... | ... | |
29 | 29 |
|
30 | 30 |
[%- IF section.children.size %] |
31 | 31 |
[%- SET at_least_one_function_block = 1 %] |
32 |
[%- FOREACH child = section.children %] |
|
32 |
[%- FOREACH child = section.children_sorted %]
|
|
33 | 33 |
[%- INCLUDE 'requirement_spec/_edit_time_and_cost_estimate_item.html' |
34 | 34 |
id_prefix = id_prefix |
35 | 35 |
item = child |
templates/webpages/requirement_spec/_edit_time_and_cost_estimate_item.html | ||
---|---|---|
19 | 19 |
</tr> |
20 | 20 |
|
21 | 21 |
[%- IF item.children.size -%] |
22 |
[%- FOREACH child = item.children -%] |
|
22 |
[%- FOREACH child = item.children_sorted -%]
|
|
23 | 23 |
[%- INCLUDE 'requirement_spec/_edit_time_and_cost_estimate_item.html' |
24 | 24 |
id_prefix = id_prefix |
25 | 25 |
item = child |
templates/webpages/requirement_spec/_show_time_and_cost_estimate.html | ||
---|---|---|
11 | 11 |
|
12 | 12 |
<table class="time-cost-estimate time-cost-estimate-context-menu"> |
13 | 13 |
<tbody> |
14 |
[%- FOREACH section = SELF.requirement_spec.sections %] |
|
14 |
[%- FOREACH section = SELF.requirement_spec.sections_sorted %]
|
|
15 | 15 |
<tr class="listheading"> |
16 | 16 |
<th>[%- LxERP.t8("Function block") %]</th> |
17 | 17 |
<th>[%- LxERP.t8("Complexity") %]</th> |
... | ... | |
28 | 28 |
|
29 | 29 |
[%- IF section.children.size %] |
30 | 30 |
[%- SET at_least_one_function_block = 1 %] |
31 |
[%- FOREACH child = section.children %] |
|
31 |
[%- FOREACH child = section.children_sorted %]
|
|
32 | 32 |
[%- INCLUDE 'requirement_spec/_show_time_and_cost_estimate_item.html' |
33 | 33 |
item = child |
34 | 34 |
level = 1 %] |
templates/webpages/requirement_spec/_show_time_and_cost_estimate_item.html | ||
---|---|---|
17 | 17 |
</tr> |
18 | 18 |
|
19 | 19 |
[%- IF item.children.size -%] |
20 |
[%- FOREACH child = item.children -%] |
|
20 |
[%- FOREACH child = item.children_sorted -%]
|
|
21 | 21 |
[%- INCLUDE 'requirement_spec/_show_time_and_cost_estimate_item.html' |
22 | 22 |
item = child |
23 | 23 |
level = level + 1 -%] |
Auch abrufbar als: Unified diff
Pflichtenheftkostenschätzung: Abschnitte/Funktionsblöcke in richtiger Reihenfolge anzeigen