{% extends "base.html" %} {% block title %}Employer Dashboard{% endblock %} {% block content %}

Employer Dashboard

Post New Job
{% for job in job_posts %} {% endfor %}
TitleCategoryStatusApplicantsActions
{{ job.title }} {{ job.category.name }} {{ job.status }} {{ JobApplication.query.filter_by(job_post_id=job.id).count() }} View Applicants Edit Configurations
{% for candidate in interested_candidates %} {% endfor %}
NameEmailPhoneProfile %Actions
{{ candidate.user.full_name }} {{ candidate.user.email }} {{ candidate.phone }}
{{ candidate.completeness }}%
View Profile

{{ company.name }}

{% if company.logo_path %} {% else %} {% endif %}

Email: {{ company.email }}

Phone: {{ company.phone or 'Not provided' }}

Address: {{ company.address or 'Not provided' }}

{% if company.description %}
About the Company
{{ company.description|safe }}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}