Added results CRUD and result detailed view

This commit is contained in:
2021-12-04 12:20:03 +00:00
parent ccc94b5bbe
commit b83b07b8d8
18 changed files with 576 additions and 59 deletions

View File

@ -9,10 +9,10 @@
<span class="surname">{{ entry.name.surname }}</span>, {{ entry.name.first_name }}
</h3>
<strong class="results-details">Email Address</strong>: {{ entry.email }}
<strong class="results-details">Email Address</strong>: {{ entry.email }} <br />
{% if entry.club %}
<strong class="results-details">Club</strong>: {{ entry.club }}
<strong class="results-details">Club</strong>: {{ entry.club }} <br />
{% endif%}
{% if entry.status == 'late' %}
@ -34,7 +34,7 @@
<ul>
{% for tag in tag_output %}
<li>{{ tag[0] }}</li>
<li>{{ tag }}</li>
{% endfor %}
</ul>
{% endif %}