Shelter PMS fully functional
This commit is contained in:
16
pms_integration/templates/admin/check_plugins.html
Normal file
16
pms_integration/templates/admin/check_plugins.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user