15 lines
309 B
Twig
15 lines
309 B
Twig
|
{% block body %}
|
||
|
{% for project in projects %}
|
||
|
{{ project.projectname|raw }}
|
||
|
{% for years in project %}
|
||
|
{% for year,weeks in years %}
|
||
|
{{year}}
|
||
|
;{% for week in weeks %}S{{week.weeknumber}};{% endfor %}
|
||
|
|
||
|
;{% for week in weeks %}{{week.cumul}};{% endfor %}
|
||
|
|
||
|
{% endfor %}
|
||
|
{% endfor %}
|
||
|
|
||
|
{% endfor %}
|
||
|
{% endblock %}
|