{% extends "base.html" %} {% load static i18n %} {% block title %}Create New Job Post - {{ block.super }}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}

{% trans "Create New Job Posting" %}

{% csrf_token %}
{% trans "Basic Information" %}
{# Removed |attr:"class:form-control" #} {{ form.title }} {% if form.title.errors %}
{{ form.title.errors }}
{% endif %}
{# Removed |attr:"class:form-control" #} {{ form.job_type }} {% if form.job_type.errors %}
{{ form.job_type.errors }}
{% endif %}
{# Removed |attr:"class:form-control" #} {{ form.department }} {% if form.department.errors %}
{{ form.department.errors }}
{% endif %}
{# Removed |attr:"class:form-control" #} {{ form.position_number }} {% if form.position_number.errors %}
{{ form.position_number.errors }}
{% endif %}
{# Removed |attr:"class:form-control" #} {{ form.workplace_type }} {% if form.workplace_type.errors %}
{{ form.workplace_type.errors }}
{% endif %}
{# Removed |attr:"class:form-control" #} {{ form.created_by }} {% if form.created_by.errors %}
{{ form.created_by.errors }}
{% endif %}
{% trans "Location" %}
{# Removed |attr:"class:form-control" #} {{ form.location_city }} {% if form.location_city.errors %}
{{ form.location_city.errors }}
{% endif %}
{# Removed |attr:"class:form-control" #} {{ form.location_state }} {% if form.location_state.errors %}
{{ form.location_state.errors }}
{% endif %}
{# Removed |attr:"class:form-control" #} {{ form.location_country }} {% if form.location_country.errors %}
{{ form.location_country.errors }}
{% endif %}
{% trans "Job Details" %}
{# Removed |attr:"class:form-control" #} {{ form.description }} {% if form.description.errors %}
{{ form.description.errors }}
{% endif %}
{# Removed |attr:"class:form-control" #} {{ form.qualifications }} {% if form.qualifications.errors %}
{{ form.qualifications.errors }}
{% endif %}
{# Removed |attr:"class:form-control" #} {{ form.salary_range }} {% if form.salary_range.errors %}
{{ form.salary_range.errors }}
{% endif %}
{# Removed |attr:"class:form-control" #} {{ form.benefits }} {% if form.benefits.errors %}
{{ form.benefits.errors }}
{% endif %}
{% trans "Application Information" %}
{# Removed |attr:"class:form-control" #} {{ form.application_url }} {% if form.application_url.errors %}
{{ form.application_url.errors }}
{% endif %}
{% trans "Full URL where candidates will apply" %}
{# Removed |attr:"class:form-control" #} {{ form.application_deadline }} {% if form.application_deadline.errors %}
{{ form.application_deadline.errors }}
{% endif %}
{# Removed |attr:"class:form-control" #} {{ form.start_date }} {% if form.start_date.errors %}
{{ form.start_date.errors }}
{% endif %}
{# Removed |attr:"class:form-control" #} {{ form.application_instructions }} {% if form.application_instructions.errors %}
{{ form.application_instructions.errors }}
{% endif %}
{% trans "Post Reach Field" %}
{# Removed |attr:"class:form-control" #} {{ form.hash_tags }} {% if form.hash_tags.errors %}
{{ form.hash_tags.errors }}
{% endif %}
{% trans "Internal Information" %}
{# Removed |attr:"class:form-control" #} {{ form.reporting_to }} {% if form.reporting_to.errors %}
{{ form.reporting_to.errors }}
{% endif %}
{# Removed |attr:"class:form-control" #} {{ form.open_positions }} {% if form.open_positions.errors %}
{{ form.open_positions.errors }}
{% endif %}
{% trans "Cancel" %}
{% endblock %}