mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
wip goal-result on resume page
This commit is contained in:
parent
45b71b207e
commit
91bee4aad3
@ -155,7 +155,6 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="item-row column">
|
<div class="item-row column">
|
||||||
{# SEULEMENT SI DÉTAILLÉ
|
|
||||||
{% if w.results|length > 0 %}
|
{% if w.results|length > 0 %}
|
||||||
<div class="objective_results without-objectives">
|
<div class="objective_results without-objectives">
|
||||||
<div class="objective">
|
<div class="objective">
|
||||||
@ -194,7 +193,6 @@
|
|||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
#}
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="item-row separator">
|
<div class="item-row separator">
|
||||||
|
@ -43,7 +43,39 @@
|
|||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<ul class="small_in_title evaluations mb-3">
|
<ul class="small_in_title evaluations mb-3">
|
||||||
{% for e in w.accompanyingPeriodWorkEvaluations %}
|
A{% for g in w.goals %}
|
||||||
|
<li class="with-objectives">
|
||||||
|
<span class="item-key">{{ 'accompanying_course_work.goal'|trans ~ ' : ' }}</span>
|
||||||
|
{{ g.goal.title|localize_translatable_string }}
|
||||||
|
{% if g.results|length > 0 %}
|
||||||
|
<span class="item-key">{{ 'accompanying_course_work.results'|trans }}</span>
|
||||||
|
<ul>
|
||||||
|
{% for r in g.results %}
|
||||||
|
<li>
|
||||||
|
{{ r.title|localize_translatable_string }}
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
B{% if w.results|length > 0 %}
|
||||||
|
<li class="without-objectives">
|
||||||
|
<span class="item-key">{{ 'accompanying_course_work.goal'|trans }}</span>
|
||||||
|
<p class="chill-no-data-statement">{{ 'accompanying_course_work.results without objective'|trans }}</p>
|
||||||
|
{% if w.results %}
|
||||||
|
<span class="item-key">{{ 'accompanying_course_work.results'|trans }}</span>
|
||||||
|
<ul>
|
||||||
|
{% for r in w.results %}
|
||||||
|
<li>
|
||||||
|
{{ r.title|localize_translatable_string }}
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
C{% for e in w.accompanyingPeriodWorkEvaluations %}
|
||||||
<li>
|
<li>
|
||||||
<span class="item-key">{{ 'accompanying_course_work.social_evaluation'|trans ~ ' : ' }}</span>
|
<span class="item-key">{{ 'accompanying_course_work.social_evaluation'|trans ~ ' : ' }}</span>
|
||||||
{{ e.evaluation.title|localize_translatable_string }}
|
{{ e.evaluation.title|localize_translatable_string }}
|
||||||
@ -55,7 +87,7 @@
|
|||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if e.endDate %}
|
{% if e.endDate %}
|
||||||
<li>
|
<li>
|
||||||
<span class="item-key">{{ 'accompanying_course_work.end_date'|trans ~ ' : ' }}</span>
|
<span class="item-key">{{ 'accompanying_course_work.end_date'|trans ~ ' : ' }}</span>
|
||||||
<b>{{ e.endDate|format_date('short') }}</b>
|
<b>{{ e.endDate|format_date('short') }}</b>
|
||||||
</li>
|
</li>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user