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

{% trans "Create New Recall" %}

{% trans "Recall Details" %}
{% csrf_token %}
{{ form.title.label_tag }} {{ form.title }} {% if form.title.errors %}
{{ form.title.errors }}
{% endif %}
{{ form.description.label_tag }} {{ form.description }} {% if form.description.errors %}
{{ form.description.errors }}
{% endif %}
{{ form.make.label_tag }} {{ form.make }}
{{ form.model.label_tag }} {{ form.model }}
{{ form.serie.label_tag }} {{ form.serie }}
{{ form.trim.label_tag }} {{ form.trim }}
{{ form.year_from.label_tag }} {{ form.year_from }}
{{ form.year_to.label_tag }} {{ form.year_to }}
{% trans "Cancel" %}
{% endblock %}