<%page expression_filter="h"/> <%inherit file="../base.html" /> <%! from django.conf import settings from django.utils.translation import ugettext as _ from openedx.core.djangolib.markup import HTML, Text %> <%namespace name='static' file='../static_content.html'/> %if not user_logged_in: <%block name="bodyclass">not-signedin view-activation %endif <%block name="content">

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