{% extends 'base.html' %} {% load markdown_extras %} {% block title %}{{ job_posting.title }} - Career Portal{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

{{ job_posting.title }}

Location: {{ job_posting.city }}{% if job_posting.state_or_province %}, {{ job_posting.state_or_province }}{% endif %}{% if job_posting.country %}, {{ job_posting.country }}{% endif %}

{% if job_posting.department %}

Department: {{ job_posting.department }}

{% endif %}

Job Description

{{ job_posting.description|markdown_to_html|safe }}


Apply for this Position

{% csrf_token %} {{ form.resume_pdf.label_tag }} {{ form.resume_pdf }} {% if form.resume_pdf.help_text %}

{{ form.resume_pdf.help_text }}

{% endif %} {{ form.resume_pdf.errors }}

Back to Career Home

{% endblock %}