Testing logout

This commit is contained in:
Fergal Moran
2013-04-15 15:41:15 +01:00
parent 1abe50d513
commit 183f054244

View File

@@ -2,13 +2,21 @@
{% load i18n %}
{% block head_title %}{% trans "Signed Out" %}{% endblock %}
{% block content %}
<h1>{% trans "Signed Out" %}</h1>
<p>{% trans "You have signed out." %}</p>
<h1>{% trans "Signed Out" %}</h1>
<p>{% trans "You have signed out." %}</p>
{% if user.is_authenticated %}
<h1>Authenticated</h1>
{% else %}
<h1>Not Authenticated</h1>
{% endif %}
{% endblock %}
{% block footerscripts %}
<script type="text/javascript">
<!--
<script type="text/javascript">
$(document).ready(function () {
window.location.href="/";
//window.location.href="/";
});
</script>
-->
</script>
{% endblock %}