OpenPartsLibrary
{{ _('No CAD file attached') }}
{% extends "list-page.html" %}
{% block style %}
{{ super() }}
{% endblock style %}
{% block function_buttons %}
{% endblock function_buttons %}
{% block view_buttons %}
{% endblock view_buttons %}
{% block main_view_content_list %}
{{ ngettext('%(num)s part was found.', '%(num)s parts were found.', len(components)) }}
| {% set next_direction = 'desc' if sort_key == 'number' and direction == 'asc' else 'asc' %} | {{ _('Part number') }}{% if sort_key == 'number' %}{% endif %} | {% set next_direction = 'desc' if sort_key == 'name' and direction == 'asc' else 'asc' %}{{ _('Name') }}{% if sort_key == 'name' %}{% endif %} | {% set next_direction = 'desc' if sort_key == 'unit_price' and direction == 'asc' else 'asc' %}{{ _('Estimated unit price') }}{% if sort_key == 'unit_price' %}{% endif %} | {% set next_direction = 'desc' if sort_key == 'supplier' and direction == 'asc' else 'asc' %}{{ _('Supplier') }}{% if sort_key == 'supplier' %}{% endif %} | {% set next_direction = 'desc' if sort_key == 'description' and direction == 'asc' else 'asc' %}{{ _('Description') }}{% if sort_key == 'description' %}{% endif %} |
|---|---|---|---|---|---|
| {{ component.number }} | {{ component.name }} | {{ component.unit_price }} {{ component.currency }} | {{ component.supplier.name if component.supplier else "" }} | {{ component.description }} |