kaauh_ats/templates/jobs/partials/delete_modal.html

36 lines
1.5 KiB
HTML

{% extends "base.html" %}
{% load i18n %}
{% block title %}{% trans "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> {% trans "Delete Job Posting" %}</h4>
</div>
<div class="card-body">
<p>{% trans "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>{% trans "This action cannot be undone."%}</strong> {% trans "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> {% trans "Cancel" %}
</a>
<button type="submit" class="btn btn-danger">
<i class="fas fa-trash"></i> {% trans "Delete Job" %}
</button>
</div>
</form>
</div>
</div>
</div>
</div>
{% endblock %}