mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-19 13:35:40 +00:00
17 lines
315 B
HTML
17 lines
315 B
HTML
{% extends "modal_form.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block pre_form_content %}
|
|
{{ block.super }}
|
|
|
|
{% if part %}
|
|
<div class='alert alert-block alert-info'>
|
|
{% include "hover_image.html" with image=part.image %}
|
|
{{ part.full_name}}
|
|
<br>
|
|
<i>{{ part.description }}</i>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% endblock %} |