{% extends "base.html" %} {% load i18n humanize %} {% block content %}

{{ recall.title }}

{% trans "Back to Recall List" %}
{% trans "Recall Details" %}
{% trans "Description:" %}

{{ recall.description }}

{% trans "Sent:" %}

{{ recall.created_at|date:"DATETIME_FORMAT" }}

{% trans "Make:" %}

{{ recall.make|default:"-" }}

{% trans "Model:" %}

{{ recall.model|default:"-" }}

{% trans "Series:" %}

{{ recall.serie|default:"-" }}

{% trans "Notifications Sent" %}
{% for notification in notifications %} {% empty %} {% endfor %}
{% trans "Dealer" %} {% trans "Cars Affected" %} {% trans "Notification Date" %}
{{ notification.dealer.name }} {{ notification.cars_affected.count }} {{ notification.sent_at|date:"SHORT_DATETIME_FORMAT" }}
{% trans "No notifications sent" %}
{% endblock %}