{% extends 'base.html' %} {% load static %} {% block title %} Dashboard {% endblock %} {% block content %}

dashboard

All created jobs

{% for job in jobs %} {% endfor %}
Job title Position filled Date posted Date expiring Applicants Actions
{{ job.title }} {% if job.filled %} Filled {% else %} Not Filled {% endif %} {{ job.created_at }} {{ job.last_date }} {{ job.applicants.count }} Edit
{% if job.filled %}
{% else %} filled
{% endif %} Delete
{% endblock %}