initial commit
This commit is contained in:
commit
41443e5a7d
17 changed files with 2950 additions and 0 deletions
1
src/templates/home.html
Normal file
1
src/templates/home.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<h1>Hello, {{ first_name }}</h1>
|
||||
0
src/templates/list_task_runs.html
Normal file
0
src/templates/list_task_runs.html
Normal file
5
src/templates/list_tasks.html
Normal file
5
src/templates/list_tasks.html
Normal 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>
|
||||
1
src/templates/run_task.html
Normal file
1
src/templates/run_task.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
Task triggered!
|
||||
0
src/templates/task_run_details.html
Normal file
0
src/templates/task_run_details.html
Normal file
Loading…
Add table
Add a link
Reference in a new issue