Skip to content

Commit

Permalink
Fix indentation of crew list partial
Browse files Browse the repository at this point in the history
VSCode auto-format and DTL do not play nicely
  • Loading branch information
jb3 committed Dec 13, 2024
1 parent 99fdca6 commit ad8ffa6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions RIGS/templates/partials/crew_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,11 @@
<span class="text-success fas fa-clock" data-toggle="tooltip"
title="This person is currently checked into this event"></span>{% endif %}
</td>
<td>{% if crew.end_time %}{% if crew.person.pk == request.user.pk or event.mic.pk ==
request.user.pk %}{% button 'edit' 'edit_checkin' crew.pk clazz='btn-sm modal-href' %}{%
endif %}{% endif %}</td>
<td>{% if crew.end_time %}
{% if crew.person.pk == request.user.pk or event.mic.pk == request.user.pk %}
{% button 'edit' 'edit_checkin' crew.pk clazz='btn-sm modal-href' %}
{% endif %}
{% endif %}</td>
</tr>
{% empty %}
<tr>
Expand Down

0 comments on commit ad8ffa6

Please sign in to comment.