resubscribe.html 747 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<%!
from django.core.urlresolvers import reverse
from django.utils.translation import ugettext as _
from django.conf import settings
%>
<%inherit file="main.html" />

<%namespace name='static' file='static_content.html'/>

<section class="container unsubscribe">

  <section class="message">
    <h1>${_("Re-subscribe Successful!")}</h1>
    <hr class="horizontal-divider">
15

16 17
    <p>
      ${_("You have re-enabled forum notification emails from {platform_name}. "
18
          "You may {dashboard_link_start}return to your dashboard{link_end}.").format(
19 20 21 22 23 24
             platform_name=settings.PLATFORM_NAME,
             dashboard_link_start="<a href='{}'>".format(reverse('dashboard')),
             link_end="</a>",)}
    </p>
  </section>
</section>