{% extends "main_django.html" %} {% load i18n staticfiles %} {% load django_markup %} {% block title %}{% trans "Signed Out" as tmsg %}{{ tmsg | force_escape }} | {{ block.super }}{% endblock %} {% block body %} {% if show_tpa_logout_link %}
{% blocktrans trimmed asvar sso_signout_msg %} {start_anchor}Click here{end_anchor} to delete your single signed on (SSO) session. {% endblocktrans %} {% interpolate_html sso_signout_msg start_anchor=''|safe end_anchor=''|safe %}
{% else %} {% if enterprise_target %} {% comment %} For enterprise SSO flow we intentionally drop learner's session. We are showing this signin message instead of logout message to avoid any confusion for learner in that case. {% endcomment %}{% filter force_escape %} {% blocktrans %} This may take a minute. If you are not redirected, go to the home page. {% endblocktrans %} {% endfilter %}
{% else %}{% blocktrans trimmed asvar signout_msg1 %} If you are not redirected within 5 seconds, {start_anchor}click here to go to the home page{end_anchor}. {% endblocktrans %} {% interpolate_html signout_msg1 start_anchor=''|safe end_anchor=''|safe %}
{% endif %} {% endif %}