{% extends 'base.html' %} {% load rules %} {% block body_content %}
{% for tag in job.tags.all %} {{tag.name}} {% endfor %}

{{ job.description }}

{% for question in job.questions.all %} {% if forloop.counter0 == 0 %}
Screening Questions:
{% endif %} - {{question.name}}
{% endfor %}
{% has_perm 'jobs.change_job' request.user job as can_change_job %} {% if can_change_job %} Applications ({{job.applications.count}})
{% csrf_token %}
{% else %} Apply {% endif %}
{% endblock %}