diff --git a/app/templates/base.html b/app/templates/base.html
index dd777c2..b68a426 100644
--- a/app/templates/base.html
+++ b/app/templates/base.html
@@ -116,6 +116,9 @@
Dashboard
+
+ Reports
+
{% if current_user.role in ['admin', 'director', 'project_manager'] %}
Contracts
@@ -132,14 +135,6 @@
Inspections
-
- Reports
-
- {% if current_user.role == 'admin' %}
-
- Scheduled Reports
-
- {% endif %}
Issues
diff --git a/app/templates/reports/_subnav.html b/app/templates/reports/_subnav.html
index 7bfa4a9..c3f9200 100644
--- a/app/templates/reports/_subnav.html
+++ b/app/templates/reports/_subnav.html
@@ -33,4 +33,12 @@
{% endif %}
+ {% if current_user.role in ['admin', 'director', 'project_manager'] %}
+
+
+ Scheduled Reports
+
+
+ {% endif %}
diff --git a/app/templates/scheduled_reports/index.html b/app/templates/scheduled_reports/index.html
index 80c3484..be5ed1e 100644
--- a/app/templates/scheduled_reports/index.html
+++ b/app/templates/scheduled_reports/index.html
@@ -1,6 +1,7 @@
{% extends "base.html" %}
{% block title %}Scheduled Reports{% endblock %}
{% block content %}
+{% include 'reports/_subnav.html' %}