mirror of
https://github.com/chibicitiberiu/ytsm.git
synced 2024-02-24 05:43:31 +00:00
19 lines
486 B
HTML
19 lines
486 B
HTML
{% extends "YtManagerApp/master_default.html" %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block body %}
|
|
|
|
<div class="container">
|
|
|
|
<h1>Admin settings</h1>
|
|
|
|
{% if not request.user.is_authenticated or not request.user.is_superuser %}
|
|
<div class="alert alert-danger" role="alert">
|
|
You must be an administrator to access this page!
|
|
</div>
|
|
{% else %}
|
|
{% crispy form %}
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% endblock body %} |