UI: Conference website web-assets v2 upgrade #103970
@ -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.
|
||||
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 %}
|
||||
|
Loading…
Reference in New Issue
Block a user