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>
|
<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 %}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue