{% extends 'base.html' %} {% load static %} {% block title %}Dashboard - ICTAZ Jobs Portal{% endblock %} {% block content %}

Dashboard

Welcome back, {{ user.get_full_name|default:user.username }} {{ user.get_role_display }}

{% if user.is_admin %} Post New Job {% endif %}

{{ total_jobs }}

Total Jobs

{{ total_applications }}

Applications

{{ active_jobs }}

Active Jobs

{% if user.is_admin %}All Job Postings{% else %}My Job Postings{% endif %}
{% if jobs %}
{% for job in jobs %} {% endfor %}
Job Title Location Status Applications Deadline Created Actions
{{ job.title }}
{{ job.get_employment_type_display }}
{{ job.location }} {% if job.status == 'published' %} {% if job.is_active %} Active {% else %} Expired {% endif %} {% elif job.status == 'draft' %} Draft {% elif job.status == 'closed' %} Closed {% else %} {{ job.get_status_display }} {% endif %} {{ job.application_count }} {{ job.application_deadline|date:"M d, Y" }} {{ job.created_at|date:"M d, Y" }}
{% if user.is_admin %} {% endif %} {% if job.application_count > 0 %} {% endif %} {% if user.is_admin %} {% endif %}
{% if is_paginated %} {% endif %} {% else %}

No job postings yet

Get started by creating your first job posting.

Create Job Posting
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}