{% extends "base.html" %} {% load static i18n crispy_forms_tags %} {% block title %}Update Candidate - {{ block.super }}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}

{% trans "Update Candidate:" %} {{ object.name }}

{% trans "Edit candidate information and details" %}

{% trans "Back to List" %} {% if object.slug %} {% trans "View" %} {% endif %}

{% trans "Candidate Form" %}

{% csrf_token %} {# Use Crispy Forms to render fields. The two-column layout is applied to the main form content #}
{% for field in form %}
{{ field|as_crispy_field }}
{% endfor %}

{% endblock %}