Skip to content
Snippets Groups Projects
Verified Commit 168fff9a authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Add listing of current mail addresses.

parent 23292f4e
No related branches found
No related tags found
No related merge requests found
......@@ -31,4 +31,18 @@
{% bootstrap_form mail_add_form %}
<input type="submit" value="{% blocktrans %}E-Mail-Adresse hinzufügen{% endblocktrans %}" />
</form>
<h2>{% blocktrans %}Meine E-Mail-Adressen{% endblocktrans %}</h2>
<p>
{% blocktrans %}
Momentan besitzt du bei Teckids die folgenden E-Mail-Adressen:
{% endblocktrans %}
</p>
<ul>
{% for mail in current_person.mail_addresses %}
<li>{{ mail }}</li>
{% endfor %}
</ul>
{% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment