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

{{ job.title }}

{{ job.posted_by.organization|default:"ICTAZ Partner" }}
{{ job.location }}
Posted {{ job.created_at|timesince }} ago
{% if job.is_active %} Active {% else %} Closed {% endif %}
Employment Type {{ job.get_employment_type_display }}
Experience Level {{ job.get_experience_level_display }}
Deadline {{ job.application_deadline|date:"M d, Y" }}
{% if job.salary_range %}
Salary Range {{ job.salary_range }}
{% endif %}

Job Description

{{ job.description|linebreaks }}

Requirements

{{ job.requirements|linebreaks }}
{{ job.application_count }} application{{ job.application_count|pluralize }} received so far
Apply for this Position
{% if user.is_authenticated %} {% if already_applied %}
You have already applied for this position.
{% elif can_apply %} Apply Now {% else %}
This position is no longer accepting applications.
{% endif %} {% else %}
Please login or register to apply for this position.
{% endif %}
Share this job
Similar Opportunities

More opportunities coming soon!

Browse All Jobs
{% endblock %} {% block extra_js %} {% endblock %}