{% extends 'base.html' %} {% load i18n %} {% block title %} {% trans "Delete Source" %} | {% trans "Recruitment System" %} {% endblock %} {% block content %}
{% trans "Are you sure you want to delete the following source? This action cannot be undone." %}
| {% trans "Name" %} | {{ source.name }} |
|---|---|
| {% trans "Type" %} | {{ source.source_type }} |
| {% trans "Status" %} | {% if source.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %} |
| {% trans "Created By" %} | {{ source.created_by }} |
| {% trans "Created At" %} | {{ source.created_at|date:"M d, Y H:i" }} |