{% extends "jobboard/base.html" %} {% load webdesign %} {% block title %} Welcome to the {{ block.super }} {% endblock title %} {% block content %}

Welcome to the PyCon 2008 Job Board!

Job Postings

{% if jobs %} {% for job in jobs %} {% include "jobboard/job_display.html" %} {% endfor %} {% else %}

There have been no jobs submitted recently.

{% endif %}

Job Applicants

{% if applicants %} {% for applicant in applicants %} {% include "jobboard/applicant_display.html" %} {% endfor %} {% else %}

There have been no applications submitted recently.

{% endif %}
{% endblock content %}