2021-10-28 13:24:34 +00:00
|
|
|
{% extends theme('base.html') %}
|
2023-03-07 17:29:18 +00:00
|
|
|
{% import "macro/table.html" as table %}
|
2021-07-01 16:21:20 +00:00
|
|
|
|
2023-03-16 18:30:30 +00:00
|
|
|
{%- block title -%}
|
2023-03-10 00:02:36 +00:00
|
|
|
{% trans %}Groups{% endtrans %}
|
2023-03-16 18:30:30 +00:00
|
|
|
{%- endblock -%}
|
2023-03-10 00:02:36 +00:00
|
|
|
|
2023-03-15 16:27:32 +00:00
|
|
|
{% block submenu %}
|
|
|
|
<nav class="ui bottom attached two item borderless menu">
|
|
|
|
<a class="active item" href="{{ url_for('groups.groups') }}">
|
|
|
|
<i class="th list icon"></i>
|
|
|
|
{% trans %}View{% endtrans %}
|
|
|
|
</a>
|
|
|
|
<a class="item" href="{{ url_for('groups.create_group') }}">
|
|
|
|
<i class="plus icon"></i>
|
|
|
|
{% trans %}Add{% endtrans %}
|
|
|
|
</a>
|
|
|
|
</nav>
|
|
|
|
{% endblock %}
|
2021-07-01 16:21:20 +00:00
|
|
|
|
2023-03-15 16:27:32 +00:00
|
|
|
{% block content %}
|
|
|
|
<div class="ui top attached segment">
|
2021-12-20 22:57:27 +00:00
|
|
|
<h2 class="ui center aligned header">
|
|
|
|
<div class="content">
|
|
|
|
{% trans %}Groups{% endtrans %}
|
|
|
|
</div>
|
|
|
|
</h2>
|
2023-03-15 16:27:32 +00:00
|
|
|
{{ table.search(table_form, "table.groups") }}
|
2021-12-20 22:57:27 +00:00
|
|
|
</div>
|
2023-03-15 16:27:32 +00:00
|
|
|
{% include "partial/groups.html" %}
|
2021-12-10 16:08:43 +00:00
|
|
|
{% endblock %}
|