email_change_successful.html 535 Bytes
Newer Older
1 2
<%! from django.utils.translation import ugettext as _ %>

3 4
<%! from django.core.urlresolvers import reverse %>
<%inherit file="main.html" />
5

6 7 8
<section class="container activation">

  <section class="message">
9
    <h1 class="valid">${_("E-mail change successful!")}</h1>
10 11
    <hr class="horizontal-divider">

12 13 14 15
    <p>${_('You should see your new email in your {link_start}dashboard{link_end}.').format(
        link_start='<a href="{url}">'.format(url=reverse('dashboard')),
        link_end='</a>',
      )}</p>
16 17
  </section>
</section>