kaauh_ats/templates/jobs/partials/delete_modal.html
2025-10-05 12:19:45 +03:00

36 lines
1.3 KiB
HTML

{% extends "base.html" %}
{% block title %}Delete Job - University ATS{% endblock %}
{% block content %}
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="card">
<div class="card-header bg-danger text-white">
<h4><i class="fas fa-exclamation-triangle"></i> Delete Job Posting</h4>
</div>
<div class="card-body">
<p>Are you sure you want to delete the job posting "<strong>{{ job.title }}</strong>"?</p>
<div class="alert alert-warning">
<i class="fas fa-exclamation-triangle"></i>
<strong>This action cannot be undone.</strong> All associated data will be permanently removed.
</div>
<form method="post">
{% csrf_token %}
<div class="d-flex justify-content-between">
<a href="{% url 'job_list' %}" class="btn btn-secondary">
<i class="fas fa-arrow-left"></i> Cancel
</a>
<button type="submit" class="btn btn-danger">
<i class="fas fa-trash"></i> Delete Job
</button>
</div>
</form>
</div>
</div>
</div>
</div>
{% endblock %}