14 lines
563 B
HTML
14 lines
563 B
HTML
<!-- templates/recalls/recall_success.html -->
|
|
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
{% block content %}
|
|
<div class="container mt-4">
|
|
<div class="alert alert-success">
|
|
<h4 class="alert-heading">{% trans "Recall Initiated Successfully!" %}</h4>
|
|
<p>{% trans "The recall has been created and notifications have been sent to all affected dealers." %}</p>
|
|
<hr>
|
|
<a href="{% url 'recall_list' %}" class="btn btn-primary">{% trans "Back to Recall Management" %}</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|