accompanying course: change wording for scopes

This commit is contained in:
nobohan
2022-01-19 16:18:04 +01:00
parent 9b5990916f
commit 040c5f8847
3 changed files with 4 additions and 3 deletions

View File

@@ -102,7 +102,7 @@ const appMessages = {
no_address: "Il n'y a pas d'adresse associée au parcours"
},
scopes: {
title: "Services",
title: "Services concernés",
add_at_least_one: "Indiquez au moins un service",
},
referrer: {

View File

@@ -132,10 +132,10 @@
{% if accompanyingCourse.scopes is not empty %}
<div class="mbloc col col-sm-6 col-lg-4">
<div class="scopes">
<h4 class="item-key">{{ 'Scopes'|trans }}</h4>
<h4 class="item-key">{{ 'Concerned scopes'|trans }}</h4>
<div>
{% for s in accompanyingCourse.scopes %}
<span>{{ s.name|localize_translatable_string|capitalize }}</span>{% if not loop.last %}, {% endif %}
<span>{{ s.name|localize_translatable_string|upper }}</span>{% if not loop.last %}, {% endif %}
{% endfor %}
</div>
</div>