mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-20 15:53:58 +00:00
21 lines
552 B
HTML
Executable File
21 lines
552 B
HTML
Executable File
{% 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>
|
|
|
|
{% if user.is_authenticated %}
|
|
<h1>Authenticated</h1>
|
|
{% else %}
|
|
<h1>Not Authenticated</h1>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
{% block footerscripts %}
|
|
<script type="text/javascript">
|
|
$(document).ready(function () {
|
|
window.location.href="/";
|
|
});
|
|
</script>
|
|
{% endblock %} |