small fix

This commit is contained in:
2020-08-29 13:01:07 +00:00
parent 04e7bb911b
commit 7f8bd2240b
4 changed files with 24 additions and 7 deletions

View File

@@ -29,14 +29,14 @@
{% include 'members/members_list.html' %}
{% endif %}
</div>
{% for job in job_list %}
<div id="jobs-{{job.slug}}" class="tab-pane">
<div class="grid-container">
{% if job_list|length > 1 %}
<h2>{{job.0}}</h2>
{% endif %}
{% with active_members=job.1 inactive_members=job.2 %}
{% include 'members/jobs_list.html' %}
{% endwith %}
@@ -44,7 +44,6 @@
</div>
{% endfor %}
</div>
</div>
{% endblock %}