95 lines
3.9 KiB
HTML
95 lines
3.9 KiB
HTML
{% extends 'base.html' %}
|
|
{% load static %}
|
|
{% load qr_code %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-3">
|
|
<div class="row justify-content-center">
|
|
{% if component.get_resolved_image %}
|
|
<img src="{{component.get_resolved_image}}" alt="{{component.name}}" class="component-img-big btn" data-bs-toggle="modal" data-bs-target="#comp-img-modal">
|
|
{% else %}
|
|
<img src="{% static 'css/icons/card-image.svg' %}" alt="{{component.name}}" class="component-img-def-big">
|
|
{% endif %}
|
|
</div>
|
|
<div class="row">
|
|
{% qr_from_text component.get_qr_code size="m" image_format="svg" %}
|
|
</div>
|
|
<div class="row">
|
|
{% if component.datasheet_link %}
|
|
<a class="btn btn-secondary mb-2" href="{{component.datasheet_link}}"><i class="bi bi-file-pdf-fill"></i> Datasheet</a>
|
|
{% endif %}
|
|
<button class="btn btn-primary mb-2" data-bs-toggle="modal" data-bs-target="#comp-edit-modal"><i class="bi bi-pencil-square"></i> Edit Component</button>
|
|
</div>
|
|
</div>
|
|
<div class="col">
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Name</th>
|
|
<th scope="col">Package</th>
|
|
<th scope="col">Manufacturer</th>
|
|
<th scope="col">Type</th>
|
|
<th scope="col">Total #</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row">{{component.name}}</th>
|
|
<th>{% if component.package %}<a href="{% url 'parts-packages-detail' uuid=component.package.id %}" class="link-primary text-decoration-none">{{component.package.name}}</a>{% endif %}</th>
|
|
<th>{% if component.manufacturer %}{{component.manufacturer.name}}{% endif %}</th>
|
|
<th>{% if component.component_type %}{{component.component_type.class_name}}{% endif %}
|
|
<th>{{component.get_total_amount}}</th>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<h2>Description</h2>
|
|
{% if component.description %}
|
|
{{component.description}}
|
|
{% else %}
|
|
<div class="alert alert-secondary" role="alert">
|
|
No description available
|
|
</div>
|
|
{% endif %}
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% if component.get_resolved_image %}
|
|
<div class="modal fade" id="comp-img-modal" tabindex="-1">
|
|
<div class="modal-dialog modal-lg modal-fullscreen-lg-down">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5>{{component.name}}</h5>
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="text-center">
|
|
<img class="component-img-huge" src="{{component.get_resolved_image}}">
|
|
</div>
|
|
{% if not component.image %}
|
|
<hr>
|
|
<div class="alert alert-warning">
|
|
Component doesn't have an image. The image is inherited from its package.
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% include 'parts/modals/edit-component-modal.html' with heading="Edit "|add:component.name edit_form=edit_form %}
|
|
{% endblock content %}
|
|
|
|
{% block custom_scripts %}
|
|
|
|
<script type="text/javascript">
|
|
{% if edit_form.errors %}
|
|
bootstrap.Modal.getOrCreateInstance(document.getElementById('comp-edit-modal')).show()
|
|
{% endif %}
|
|
</script>
|
|
{% endblock custom_scripts %}
|
|
|