{% extends 'base.html' %} {# Not loading markdown_extras as it's not strictly needed for job titles/details here #} {% block title %}Admin - Job Postings{% endblock %} {% block content %}
Posted on: {{ job.date_posted|date:"Y-m-d" }}
Status: {% if job.is_active %}Active{% else %}Inactive{% endif %}
Department: {{ job.department|default:"N/A" }}
No job postings found.
{% endif %} {% endblock %}