<%inherit file="../main.html" /> <%namespace name='static' file='../static_content.html'/> <%! from django.utils.translation import ugettext as _ from django.core.urlresolvers import reverse %>
%if not already_active:

${_("Activation Complete!")}

%else:

${_("Account already active!")}

%endif

%if not already_active: ${_("Thanks for activating your account.")} %else: ${_("This account has already been activated.")} %endif %if user_logged_in: ${_("Visit your {link_start}dashboard{link_end} to see your courses.").format(link_start=''.format(url=reverse('dashboard')), link_end='')} %else: ${_("You can now {link_start}log in{link_end}.").format(link_start=''.format(url=reverse('signin_user')), link_end='')} %endif