diff options
Diffstat (limited to '')
-rw-r--r-- | pyblackbird_cc/templates/resources/create_featured_resource.html | 35 |
1 files changed, 20 insertions, 15 deletions
diff --git a/pyblackbird_cc/templates/resources/create_featured_resource.html b/pyblackbird_cc/templates/resources/create_featured_resource.html index e98b2ba..19022fc 100644 --- a/pyblackbird_cc/templates/resources/create_featured_resource.html +++ b/pyblackbird_cc/templates/resources/create_featured_resource.html @@ -1,21 +1,26 @@ {% extends "base.html" %} -{% load static %} -{% block title %}Add featured resource{% endblock title %} +{% load static %} +{% block title %} + Add featured resource +{% endblock title %} {% block content %} - -{% 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> + {% 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> - </div> -{% else %} - <p>You must be a super-user to access this page.</p> -{% endif %} - - + {% else %} + <p>You must be a super-user to access this page.</p> + {% endif %} {% endblock content %} - |