diff --git a/app/templates/admin_template.html b/app/templates/admin_template.html
index e79f170ea..61afa8562 100644
--- a/app/templates/admin_template.html
+++ b/app/templates/admin_template.html
@@ -147,15 +147,11 @@
{% set meta_suffix = 'Built by the ' %}
{% endif %}
- {% if signed_out %}
+ {% if current_user.is_authenticated %}
{% set using_notify_links = {
"title": "Using Notify",
"columns": 1,
"items": [
- {
- "href": url_for("main.get_started"),
- "text": "Get started"
- },
{
"href": url_for("main.trial_mode_new"),
"text": "Trial mode"
@@ -175,6 +171,10 @@
"title": "Using Notify",
"columns": 1,
"items": [
+ {
+ "href": url_for("main.get_started"),
+ "text": "Get started"
+ },
{
"href": url_for("main.trial_mode_new"),
"text": "Trial mode"
diff --git a/app/templates/views/signedout.html b/app/templates/views/signedout.html
index 6b3a4a44a..ea9e7db75 100644
--- a/app/templates/views/signedout.html
+++ b/app/templates/views/signedout.html
@@ -1,7 +1,5 @@
{% extends "fullwidth_template.html" %}
-{% set signed_out = True %}
-
{% block meta %}
{% endblock %}