Compare commits

...

2 commits

Author SHA1 Message Date
3069aab3f9
Add delete group link to group detail page and update group creation header
All checks were successful
Build and push Docker image / build (push) Successful in 1m53s
2025-06-14 18:14:33 +02:00
bf8161a7fb
Add volume configuration for PostgreSQL service in Docker Compose 2025-06-14 18:11:58 +02:00
3 changed files with 6 additions and 3 deletions

View file

@ -37,3 +37,5 @@ services:
image: postgres:17 image: postgres:17
container_name: musik_postgres container_name: musik_postgres
env_file: stack.env env_file: stack.env
volumes:
- /docker/musik/postgres:/var/lib/postgresql/data

View file

@ -25,6 +25,10 @@
formaction="{% url "group_clear_blacklist" pk=group.pk %}"> formaction="{% url "group_clear_blacklist" pk=group.pk %}">
<i class="ri-history-fill"></i> Effacer la blacklist <i class="ri-history-fill"></i> Effacer la blacklist
</button> </button>
<a href="{% url "group_delete" group.pk %}"
role="button"
class="secondary">
<i class="ri-delete-bin-fill"></i> Supprimer</a>
</div> </div>
</form> </form>
</p> </p>

View file

@ -5,9 +5,6 @@
<h1> <h1>
<i class="ri-group-2-fill"></i> {{ group.name }} <i class="ri-group-2-fill"></i> {{ group.name }}
</h1> </h1>
<p>
<a href="{% url "group_delete" group.pk %}">Supprimer le groupe</a>
</p>
{% else %} {% else %}
<h1>Créer un groupe</h1> <h1>Créer un groupe</h1>
{% endif %} {% endif %}