2021-05-27 20:00:28 +03:00

46 lines
1.3 KiB
HTML

{% extends 'base/base.html' %}
{% load static %}
{% block title %}Управление{% endblock %}
{% block heading %}Управление{% endblock %}
{% block extra_css %}
<link rel="stylesheet" href="{% static 'main/css/work.css' %}" xmlns="http://www.w3.org/1999/html">
<link rel="stylesheet" href="{% static 'modules/notifications/dist/notifications.css' %}">
{% endblock %}
{% block extra_scripts %}
<script src="{% static 'main/js/notifications.js' %}"></script> {# Для #}
<script src="{% static 'modules/notifications/dist/notifications.js' %}"></script> {# Уведомлений #}
{% endblock%}
{% block content %}
<div class="container-md">
{% for message in messages %}
<script>create_notification('{{message}}','','{{message.tags}}',2000)</script>
{% endfor %}
{% block form %}
<form method="post">
{% csrf_token %}
<div class="row justify-content-center new-section">
<div class="col-10">
<h3 class="py-4 text-center font-weight-bold mb-0">Список сотрудников</h3>
{% block table %}
<div id="table"></div>
{% endblock %}
</div>
</div>
</form>
{% endblock %}
</div>
<script src="{% static 'main/js/control_page/dist/index_bundle.js' %}"></script>
{% endblock %}