INITIAL
This commit is contained in:
commit
7ba937ef66
66 changed files with 1823 additions and 0 deletions
21
ccdb/templates/account/email_confirmed.html
Normal file
21
ccdb/templates/account/email_confirmed.html
Normal file
|
@ -0,0 +1,21 @@
|
|||
{% extends "account/base.html" %}
|
||||
|
||||
{% load i18n %}
|
||||
{% load account %}
|
||||
|
||||
{% block head_title %}{% trans "Confirm E-mail Address" %}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<h2>{% trans "Confirm E-mail Address" %}</h2>
|
||||
{% user_display email_address.user as user_display %}
|
||||
<p>
|
||||
{% blocktrans with email_address.email as email %}
|
||||
You have confirmed that <a href="mailto:{{ email }}">{{ email }}</a>
|
||||
is an e-mail address for user {{ user_display }}.
|
||||
{% endblocktrans %}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue