{% extends 'base.html' %} {% load static %} {% load get_total_applicant %} {% block content %}

Dashboard

Home / Job / Dashboard
{% include 'messages.html' %}
{% if user.role == "employer" %}
My All Job
{% if jobs %} {% for job in jobs %} {% endfor %}
Job Title Posted Date Date expiring Status Applicants Actions
{{ job.title }} {{ job.timestamp | date:'M d, Y' }} {{ job.last_date | date:'M d, Y' }} {% if job.is_published == True %} Published {% else %} Pending {% endif %} {% get_total_applicant total_applicants job as is_applicant %} {% if is_applicant %} {% if is_applicant > 1 %} {% get_total_applicant total_applicants job %} Applicants {% else %} {% get_total_applicant total_applicants job %} Applicant {% endif %} {% endif %} Edit {% if job.is_published == True %} {% if job.is_closed == False %} {% else %} Closed {% endif %} {% endif %}
{% else %}

You have not any job yet !! Create a new one.

{% endif %} {% elif user.role == "employee" %}
Bookmarked Posts
{% if savedjobs %} {% for job in savedjobs %} {% endfor %}
Job Title Posted Date Date expiring Actions
{{ job.job.title }} {{ job.timestamp | date:'M d, Y' }} {{ job.job.last_date | date:'M d, Y' }}
{% else %}

You have not any save job yet !!

{% endif %}
Aplied Posts
{% if appliedjobs %} {% for job in appliedjobs %} {% endfor %}
Job Title Posted Date Date expiring
{{ job.job.title }} {{ job.timestamp | date:'M d, Y' }} {{ job.job.last_date | date:'M d, Y' }}
{% else %}

You have not any applied job yet !!

{% endif %}
{% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}