Skip to content

Commit

Permalink
Update admin_settings.html
Browse files Browse the repository at this point in the history
  • Loading branch information
sondregronas authored Jul 14, 2024
1 parent 294a453 commit 535b23b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BookingSystem/templates/admin_settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ <h3>Informasjon om rutineoppgaver (kjøres automagisk)</h3>
<th>Neste kjøring</th>
</tr>
</thead>
{% for job_name, job in routine_tasks.jobs.items() %}
{% for job in routine_tasks.jobs.values() %}
<tr>
<td>{{ job_name.replace('_',' ').strip() | capitalize }}</td>
<td>{{ job.name }}</td>
<td>{{ job.last_run }}</td>
<td>{{ job.next_run }}</td>
</tr>
Expand Down

0 comments on commit 535b23b

Please sign in to comment.