Remove login button from gone page when already logged in

Fixes #414
This commit is contained in:
rubenwardy 2023-01-02 17:25:08 +00:00
parent a7bbb45fc2
commit 72d999e759

@ -39,9 +39,13 @@
{% endif %}
<p>
{{ _("Please check back again later.") }}
{{ _("Or, if you're the author, log in to see more information.") }}
</p>
<p>
<a href="{{ url_for('users.login') }}" class="btn btn-primary">{{ _("Login") }}</a>
{% if not current_user.is_authenticated %}
{{ _("Or, if you're the author, log in to see more information.") }}
{% endif %}
</p>
{% if not current_user.is_authenticated %}
<p>
<a href="{{ url_for('users.login') }}" class="btn btn-primary">{{ _("Login") }}</a>
</p>
{% endif %}
{% endblock %}