UI: Conference website web-assets v2 upgrade #103970

Merged
Márton Lente merged 50 commits from ui/web-assets-v2-update into main 2024-09-23 12:34:43 +02:00
Showing only changes of commit d074e9f8b2 - Show all commits

View File

@ -9,15 +9,15 @@ table.table-no-box
| {% for o in object_list %}
tr
td(style="width: 4ch;")
span.text-muted= o.edition.year
span.text-muted {{ o.edition.year }}
td
a(href=`${o.edition.path}/${o.pk}`)= o.title
a(href="{% url 'festival_entry_detail' edition_path=o.edition.path pk=o.pk %}") {{ o.title }}
td.text-right
span.badge.badge-secondary(class=`status-${o.status}`)
span.badge.badge-secondary(class="status-{{ o.status }}")
| {% if o.status == 'rejected' %}
| NOT ACCEPTED
| {% else %}
| = o.status.toUpperCase()
| {{o.status | upper }}
| {% endif %}
| {% endfor %}
| {% else %}