aboutsummaryrefslogtreecommitdiffstats
path: root/pyblackbird_cc
diff options
context:
space:
mode:
Diffstat (limited to 'pyblackbird_cc')
-rw-r--r--pyblackbird_cc/templates/resources/create_featured_resource.html16
1 files changed, 14 insertions, 2 deletions
diff --git a/pyblackbird_cc/templates/resources/create_featured_resource.html b/pyblackbird_cc/templates/resources/create_featured_resource.html
index 7995cad..e98b2ba 100644
--- a/pyblackbird_cc/templates/resources/create_featured_resource.html
+++ b/pyblackbird_cc/templates/resources/create_featured_resource.html
@@ -1,9 +1,21 @@
{% extends "base.html" %}
{% load static %}
-{% block title %}?Add featured resource{% endblock title %}
+{% block title %}Add featured resource{% endblock title %}
{% block content %}
-<p>Bobbins -totalus bobinus</p>
+
+{% 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 %}