[Feature] Engineer Pathway (#256)

Co-authored-by: Tim Lorsbach <tim@lorsba.ch>
Reviewed-on: enviPath/enviPy#256
This commit is contained in:
2025-12-10 07:35:42 +13:00
parent 46b0f1c124
commit 648ec150a9
17 changed files with 990 additions and 127 deletions

View File

@ -20,6 +20,9 @@
<table class="table-zebra table">
<thead>
<tr>
{% if meta.user.is_superuser %}
<th>User</th>
{% endif %}
<th>ID</th>
<th>Name</th>
<th>Status</th>
@ -36,7 +39,11 @@
<a href="{{ job.user.url }}">{{ job.user.username }}</a>
</td>
{% endif %}
<td>{{ job.task_id }}</td>
<td>
<a href="{% url 'job detail' job.task_id %}"
>{{ job.task_id }}</a
>
</td>
<td>{{ job.job_name }}</td>
<td>{{ job.status }}</td>
<td>{{ job.created }}</td>