initial commit

This commit is contained in:
Matthieu Bessat 2024-04-27 11:59:43 +02:00
commit 41443e5a7d
17 changed files with 2950 additions and 0 deletions

1
src/templates/home.html Normal file
View file

@ -0,0 +1 @@
<h1>Hello, {{ first_name }}</h1>

View file

View file

@ -0,0 +1,5 @@
<ul>
{% for task in tasks %}
<li>{{ task.name }} <a href="/tasks/{{ task.id }}/run">Run task</a></li>
{% endfor %}
</ul>

View file

@ -0,0 +1 @@
Task triggered!

View file