mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
8 lines
271 B
HTML
8 lines
271 B
HTML
{% if object.event_size == 2 %}
|
|
<span class="badge badge-danger p-2 my-3">Large Event</span>
|
|
{% elif object.event_size == 1 %}
|
|
<span class="badge badge-warning p-2 my-3">Medium Event</span>
|
|
{%else%}
|
|
<span class="badge badge-success p-2 my-3">Small Event</span>
|
|
{%endif%}
|