first commit

This commit is contained in:
mrtoine 2025-09-20 13:18:04 +02:00
commit e6c52820cd
227 changed files with 16156 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{% extends "layouts/base.html" %}
{% block title %}Nouvelle tâche liée{% endblock %}
{% block content %}
<div class="container">
<h2>Ajouter une tâche liée</h2>
<p class="text-muted">Cette tâche sera liée à l'entité: {{ entity_type }} (ID: {{ entity_id }})</p>
{% include "partials/task_quick_add_form.html" %}
<div class="mt-3">
<a href="{{ url_for('tasks.tasks_index') }}">&larr; Retour aux tâches</a>
</div>
</div>
{% endblock %}