templates: rename registration steps

This commit is contained in:
Serghei Mihai 2019-06-06 12:24:07 +02:00
parent 12413b357e
commit 079aff2f47
1 changed files with 4 additions and 6 deletions

View File

@ -1,22 +1,20 @@
<div class="registration-steps">
<ul>
{% for step in registration_steps %}
{% endfor %}
<li {% if active_step == 'creation' %}class="current"{% endif %}>
<span class="marker">1</span>
<span class="label">Création de compte</span>
<span class="label">Création</span>
</li>
<li {% if active_step == 'activation' %}class="current"{% endif %}>
<span class="marker">2</span>
<span class="label">Activation de compte</span>
<span class="label">Validation</span>
</li>
<li {% if active_step == 'completion' %}class="current"{% endif %}>
<span class="marker">3</span>
<span class="label">Complétion du profil</span>
<span class="label">Finalisation</span>
</li>
<li {% if active_step == 'share' %}class="current"{% endif %}>
<span class="marker">4</span>
<span class="label">Partage des données</span>
<span class="label">Partage</span>
</li>
</ul>
</div>