mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-31 14:08:43 +00:00
Testing logout
This commit is contained in:
@@ -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 %}
|
||||
Reference in New Issue
Block a user