Remove Organization column from campaign list template
All checks were successful
Deploy to Server / deploy (push) Successful in 20s

This commit is contained in:
Joakim Hellsén 2026-04-01 04:24:37 +02:00
commit a0aef85b32
Signed by: Joakim Hellsén
SSH key fingerprint: SHA256:/9h/CsExpFp+PRhsfA0xznFx2CGfTT5R/kpuFfUgEQk

View file

@ -22,7 +22,6 @@
<thead> <thead>
<tr> <tr>
<th>Name</th> <th>Name</th>
<th>Organization</th>
<th>Start</th> <th>Start</th>
<th>End</th> <th>End</th>
</tr> </tr>
@ -31,12 +30,7 @@
{% for c in campaigns %} {% for c in campaigns %}
<tr> <tr>
<td> <td>
<a href="{% url 'chzzk:campaign_detail' c.pk %}">{{ c.title }}</a> <a href="{% url 'chzzk:campaign_detail' c.campaign_no %}">{{ c.title }}</a>
</td>
<td>
{% if c.organization %}
<a href="{% url 'chzzk:organization_detail' c.organization.pk %}">{{ c.organization.name }}</a>
{% endif %}
</td> </td>
<td> <td>
{% if c.start_date %} {% if c.start_date %}