Added a part info tab to show in which projects the part is used.

This commit is contained in:
Jan Böhmer 2022-12-18 23:58:04 +01:00
parent d5b1c6be0a
commit 7f38095e82
4 changed files with 64 additions and 5 deletions

View file

@ -0,0 +1,26 @@
{% import "components/attachments.macro.html.twig" as attachments %}
<table class="table table-striped table-sm table-hover table-responsive-sm">
<thead>
<tr>
<th></th>
<th>{% trans %}entity.info.name{% endtrans %}</th>
<th>{% trans %}description.label{% endtrans %}</th>
<th>{% trans %}project.bom.quantity{% endtrans %}</th>
<th>{% trans %}project.bom.mountnames{% endtrans %}</th>
</tr>
</thead>
<tbody>
{% for bom_entry in part.projectBomEntries %}
<tr>
<td>{% if bom_entry.project.masterPictureAttachment is not null %}{{ attachments.attachment_icon(bom_entry.project.masterPictureAttachment, attachment_manager) }}{% endif %}</td>
<td><a href="{{ url('project_info', {'id': bom_entry.project.iD}) }}">{{ bom_entry.project.name }}</a></td> {# Name #}
<td>{{ bom_entry.project.description|format_markdown }}</td> {# Description #}
<td>{{ bom_entry.quantity | format_amount(part.partUnit) }}</td>
<td>{{ bom_entry.mountnames }}</td>
</tr>
{% endfor %}
</tbody>
</table>

View file

@ -91,6 +91,15 @@
{% trans %}vendor.partinfo.history{% endtrans %}
</a>
</li>
{% if part.projectBomEntries is not empty %}
<li class="nav-item">
<a class="nav-link" id="projects-tab" data-bs-toggle="tab" href="#projects" role="tab">
<i class="fas fa-archive fa-fw"></i>
{% trans %}device.labelp{% endtrans %}
<span class="badge bg-secondary">{{ part.projectBomEntries | length }}</span>
</a>
</li>
{% endif %}
<li class="nav-item">
<a class="nav-link" id="tools-tab" data-bs-toggle="tab" href="#tools" role="tab">
<i class="fas fa-tools"></i>
@ -130,6 +139,10 @@
</div>
{% endif %}
<div class="tab-pane fade" id="projects" role="tabpanel" aria-labelledby="projects-tab">
{% include "Parts/info/_projects.html.twig" %}
</div>
<div class="tab-pane fade" id="history" role="tabpanel" aria-labelledby="history-tab">
{% include "Parts/info/_history.html.twig" %}
</div>