14 lines
509 B
HTML
14 lines
509 B
HTML
<!-- templates/cars/car_confirm_delete.html -->
|
|
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% block title %}Delete Car{% endblock %}
|
|
{% block content %}
|
|
<h1>Delete Car</h1>
|
|
<p>Are you sure you want to delete the car "{{ car }}"?</p>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<button type="submit" class="btn btn-phoenix-danger">Confirm Delete</button>
|
|
<a href="{% url 'car_detail' car.pk %}" class="btn btn-phoenix-secondary">{% trans 'Cancel' %}</a>
|
|
</form>
|
|
{% endblock %}
|