Fix logout redirect
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<h1 class="title">Pathogen Data Insights</h1>
|
||||
<div class="container">
|
||||
<h2 class="subtitle">Welcome to the Neptune system</h2>
|
||||
<div class="col">
|
||||
<h2 class="subtitle">Hello!</h2>
|
||||
<div class="box">
|
||||
<h1 class="title">Pathogen Data Insights</h1>
|
||||
<div class="container">
|
||||
<h2 class="subtitle">Welcome to the Neptune system</h2>
|
||||
<div class="col">
|
||||
<h2 class="subtitle">Hello!</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
0
core/templates/registration/logout.html
Normal file
0
core/templates/registration/logout.html
Normal file
@@ -118,12 +118,27 @@
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<p>{{ card }} hits</p>
|
||||
<p>{{ redacted }} redacted</p>
|
||||
{% if exemption is not None %}
|
||||
<p>redaction overriden by superuser</p>
|
||||
{% endif %}
|
||||
<p>{{ took }}ms</p>
|
||||
<div class="box">
|
||||
<div class="columns">
|
||||
<div class="column">
|
||||
<p>{{ card }} hits</p>
|
||||
</div>
|
||||
{% if redacted != 0 %}
|
||||
<div class="column">
|
||||
<p>{{ redacted }} redacted</p>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% if exemption is not None %}
|
||||
<div class="column">
|
||||
<p>god mode</p>
|
||||
</div>
|
||||
{% endif %}
|
||||
<div class="column">
|
||||
<p>{{ took }}ms</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user