{% extends "modal_form.html" %} {% load i18n %} {% block form %}
{% load crispy_forms_tags %}

{% trans "Set category for the following parts" %}

{% for part in parts %} {% endfor %}
{% trans "Part" %} {% trans "Description" %} {% trans "Category" %}
{% include "hover_image.html" with image=part.image hover=False %} {{ part.full_name }} {{ part.description }} {{ part.category.pathstring }}
{% crispy form %}
{% endblock %}