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 dad8e3622e - Show all commits

View File

@ -3,22 +3,25 @@
| {% block content_main %}
h2 My Festival Submissions
| {% if object_list %}
table.table-no-box
tbody
| {% for o in object_list %}
tr
td(style="width: 4ch; padding-right: 0")
span.text-muted {{ o.edition.year }}
span.text-muted= o.edition.year
td
a(href="{% url 'festival_entry_detail' edition_path=o.edition.path pk=o.pk %}")
| {{ o.title }}
a(href=`${o.edition.path}/${o.pk}`)= o.title
td.text-right
span.badge.badge-secondary(
class="status-{{o.status }}"
)
| {% if o.status == 'rejected' %}NOT ACCEPTED{% else %}{{o.status | upper }}{% endif %}
| {% empty %}
| Your Suzanne Awards Festival entries will show up here.
| {% endfor %}
span.badge.badge-secondary(class=`status-${o.status}`)
| {% if o.status == 'rejected' %}
| NOT ACCEPTED
| {% else %}
| = o.status.toUpperCase()
| {% endif %}
| {% endfor %}
| {% else %}
div Your Suzanne Awards Festival entries will show up here.
| {% endif %}
| {% endblock content_main %}