{% extends 'dash-back.html' %} {% block title %}My Jobs | Job Board{% endblock %} {% block dash %}
{% include 'partials/alert.html' %}

My Jobs

Post New Job
{% if my_jobs and my_jobs|length > 0 %}
{% for job in my_jobs %} {% endfor %}
# Title Category Skill Required Opening Applicant No Posted Action
{{ forloop.counter }}
{{ job.title }}
{{ job.short_description|default:job.description|truncatechars:50 }}
{{ job.category }} {{ job.skill_required|default:'—' }} {{ job.number_opening }} {{ job.applicant_count }} {{ job.created_at|date:'M j, Y' }} Edit
{% csrf_token %}
{% else %}
You have not posted any jobs yet. Post a job.
{% endif %}
{% endblock %}