Rename old python folder.

This commit is contained in:
2023-05-15 13:36:16 -04:00
parent b45d4fa8dc
commit 0f2f3094e0
25 changed files with 95 additions and 15 deletions
@@ -0,0 +1,27 @@
{% extends "layout.html" %}
{% block content %}
<h2>
Category Editor
</h2>
<table>
<thead>
<tr>
<th scope="col">Code</th>
<th scope="col">Name</th>
<th scope="col">Color</th>
</tr>
</thead>
<tbody>
{%for activity in activities %}
<tr class="activity-{{activity.code}} color-{{activity.color}}" hx-target="closest tr" hx-swap="beforeend">
<td>{{ activity.code }}</td>
<td>{{ activity.name }}</td>
<td hx-get="/get-color-form/{{activity.activity_id}}">{{ activity.color }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}