email_change_successful.html 527 Bytes
Newer Older
1
<%inherit file="main.html" />
2 3 4 5
<%!
from django.utils.translation import ugettext as _
from django.core.urlresolvers import reverse
%>
6

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

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

13 14 15 16
    <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>
17 18
  </section>
</section>