Files
dss/templates/account/logout.html
2012-09-26 20:24:33 +01:00

14 lines
395 B
HTML

{% extends "account/base.html" %}
{% load i18n %}
{% block head_title %}{% trans "Signed Out" %}{% endblock %}
{% block content %}
<h1>{% trans "Signed Out" %}</h1>
<p>{% trans "You have signed out." %}</p>
{% endblock %}
{% block footerscripts %}
<script type="text/javascript">
$(document).ready(function () {
window.location.href="/";
});
</script>
{% endblock %}