Add key parameters to stock

This commit is contained in:
Mario Hüttel 2022-02-21 19:45:42 +01:00
parent 009ff5ae96
commit b26c54dfce
1 changed files with 5 additions and 1 deletions

View File

@ -69,7 +69,11 @@
{% endif %}
</div>
<div class="flex-grow-1 ms-3">
<h6 class="mt-0 text-primary"><a href="{% url 'parts-components-detail' uuid=stock.component.id %}" class="text-decoration-none">{{ stock.component.name }}</a></h6>
<h6 class="mt-0 text-primary"><a href="{% url 'parts-components-detail' uuid=stock.component.id %}" class="text-decoration-none">{{ stock.component.name }}</a>
{% for key_param in stock.component.get_key_parameters_as_text %}
{{key_param}}&nbsp;
{% endfor %}
</h6>
{% if stock.component.package %}
Package: {{stock.component.package}}<br>
{% endif %}