Remove Organization column from campaign list template
All checks were successful
Deploy to Server / deploy (push) Successful in 20s
All checks were successful
Deploy to Server / deploy (push) Successful in 20s
This commit is contained in:
parent
280d8390ce
commit
a0aef85b32
1 changed files with 1 additions and 7 deletions
|
|
@ -22,7 +22,6 @@
|
|||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Organization</th>
|
||||
<th>Start</th>
|
||||
<th>End</th>
|
||||
</tr>
|
||||
|
|
@ -31,12 +30,7 @@
|
|||
{% for c in campaigns %}
|
||||
<tr>
|
||||
<td>
|
||||
<a href="{% url 'chzzk:campaign_detail' c.pk %}">{{ c.title }}</a>
|
||||
</td>
|
||||
<td>
|
||||
{% if c.organization %}
|
||||
<a href="{% url 'chzzk:organization_detail' c.organization.pk %}">{{ c.organization.name }}</a>
|
||||
{% endif %}
|
||||
<a href="{% url 'chzzk:campaign_detail' c.campaign_no %}">{{ c.title }}</a>
|
||||
</td>
|
||||
<td>
|
||||
{% if c.start_date %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue