aboutsummaryrefslogtreecommitdiffstats
path: root/alphabetlearning/templates/resources/create_featured_resource.html
diff options
context:
space:
mode:
Diffstat (limited to 'alphabetlearning/templates/resources/create_featured_resource.html')
-rw-r--r--alphabetlearning/templates/resources/create_featured_resource.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/alphabetlearning/templates/resources/create_featured_resource.html b/alphabetlearning/templates/resources/create_featured_resource.html
new file mode 100644
index 0000000..19022fc
--- /dev/null
+++ b/alphabetlearning/templates/resources/create_featured_resource.html
@@ -0,0 +1,26 @@
+{% extends "base.html" %}
+
+{% load static %}
+
+{% block title %}
+ Add featured resource
+{% endblock title %}
+{% block content %}
+ {% if messages %}
+ <ul class="messages">
+ {% for message in messages %}
+ <li {% if message.tags %}class="{{ message.tags }}"{% endif %}>{{ message }}</li>
+ {% endfor %}
+ </ul>
+ {% endif %}
+ {% if request.user.is_authenticated and request.user.is_staff %}
+ <div class="row d-flex justify-content-center">
+ <div class="col bg-light mt-lg-4 p-4 border border-success border-opacity-25 rounded">
+ <h2>Configure featured resources</h2>
+ <p>You can select three resources to be "featured" on the main page</p>
+ </div>
+ </div>
+ {% else %}
+ <p>You must be a super-user to access this page.</p>
+ {% endif %}
+{% endblock content %}