{% load html %}
{% for job in job_list %}
{{ job.title }}
{% if job.location %}{{ job.location }}{% endif %}
{% if job.summary %}{{ job.summary }}{% endif %}
{{ job.description|html }}
{% if job.how_to_apply %}{{ job.how_to_apply|html }}{% endif %}
{% endfor %}