misc: remove useless comma in authorization template (#21187)

This commit is contained in:
Josue Kouka 2018-01-18 11:43:02 +01:00
parent d639f7755b
commit edd9e8965d
1 changed files with 2 additions and 2 deletions

View File

@ -8,9 +8,9 @@
<ul>
{% for scope in scopes %}
{% if scope == "profile" %}
<li>{% trans "Your first and last name, your username," %}</li>
<li>{% trans "Your first and last name, your username" %}</li>
{% elif scope == "email" %}
<li>{% trans "Your email" %}: {{ user.email }},</li>
<li>{% trans "Your email" %}: {{ user.email }}</li>
{% endif %}
{% endfor %}
</ul>