- 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
12 lines
306 B
HTML
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 %}
|