Files
digiserver-v2/app/templates/groups/groups_list.html
Quality App Developer a4262da7c9 chore: fix file permissions and ownership across project
- Changed ownership of all files to scheianu:scheianu
- Set directories to 755 permissions (rwxr-xr-x)
- Set files to 644 permissions (rw-r--r--)
- Made shell scripts executable (755)
- Allows development without requiring sudo for file modifications
- Improves development workflow and security
2026-01-15 22:39:51 +02:00

12 lines
306 B
HTML

{% extends "base.html" %}
{% block title %}Groups - DigiServer v2{% endblock %}
{% block content %}
<h1>Groups</h1>
<div class="card">
<p>Groups list view - Template in progress</p>
<a href="{{ url_for('groups.create_group') }}" class="btn btn-success">Create New Group</a>
</div>
{% endblock %}