blob: ddb8e002561f24067aaa5d8b2c6685eb184c2a9d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{# admin block #}
{% if request.user.is_authenticated and request.user.is_staff %}
<div class="row p-4 rounded border border-danger border-opacity-50 border-3">
<h5 class="bg-primary text-white px-2 py-1 rounded">Admin bar</h5>
<p>
Only you will see this bar - normal users will not see it. It allows us to
include buttons for adding new resources, etc.
</p>
<div class="col d-flex flex-column flex-md-row justify-content-between align-items-md-center">
<a class="btn btn-primary my-2" href="{% url 'resources:create_resource' %}">Add a new resource</a>
<div class="bg-danger p-2 my-2 text-dark bg-white border border-1 border-danger">
Logged in as
<strong>{{ request.user.email }}</strong>
</div>
<form action="{% url 'account_logout' %}" method="post" class="my-2">
{% csrf_token %}
<button type="submit" class="btn btn-primary">Log out</button>
</form>
</div>
</div>
{% endif %}
|