Shelter PMS fully functional

This commit is contained in:
2024-12-09 16:36:11 +09:00
parent 60eaef5527
commit e76a80fb2f
47 changed files with 665 additions and 909 deletions

View File

@@ -0,0 +1,16 @@
{% extends "admin/base_site.html" %}
{% block content %}
<h1>Проверка доступных плагинов</h1>
<p>Ниже перечислены плагины, доступные в системе:</p>
<ul>
{% for plugin_name in plugins.keys %}
<li>
<strong>{{ plugin_name }}</strong>: {{ plugins[plugin_name].__doc__ }}
</li>
{% endfor %}
</ul>
<p>
<a class="button" href="{% url 'admin:index' %}">Вернуться в админку</a>
</p>
{% endblock %}