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