2021-11-09 16:35:11 +01:00
|
|
|
{% extends 'base.html' %}
|
2021-11-09 18:44:28 +01:00
|
|
|
{% load static %}
|
|
|
|
{% load qr_code %}
|
2021-11-12 20:14:02 +01:00
|
|
|
{% load crispy_forms_tags %}
|
2021-11-09 16:35:11 +01:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="container">
|
2021-11-10 19:38:39 +01:00
|
|
|
<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>
|
2021-11-09 18:44:28 +01:00
|
|
|
{% endif %}
|
2021-11-10 19:38:39 +01:00
|
|
|
<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>
|
2022-01-01 17:53:10 +01:00
|
|
|
<button class="btn btn-danger mb-2" data-bs-toggle="modal" data-bs-target="#component-delete-modal"><i class="bi bi-file-x"></i> Delete {{component.name}}</button>
|
2021-11-10 19:38:39 +01:00
|
|
|
</div>
|
2021-11-09 18:44:28 +01:00
|
|
|
</div>
|
2021-11-13 21:05:52 +01:00
|
|
|
<div class="col m-1">
|
2021-11-10 19:38:39 +01:00
|
|
|
<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>
|
2021-11-11 20:51:02 +01:00
|
|
|
<td class="align-middle" scope="row">
|
2022-01-11 19:35:09 +01:00
|
|
|
{{component.name}}{% if key_parameter_string %}<br><span class="text-secondary">{{key_parameter_string}}</span>{% endif %}
|
2021-11-11 20:51:02 +01:00
|
|
|
</td>
|
|
|
|
<td class="align-middle" >
|
|
|
|
{% if component.package %}
|
|
|
|
<a href="{% url 'parts-packages-detail' uuid=component.package.id %}" class="link-primary text-decoration-none">{{component.package.name}}</a>
|
|
|
|
{% if component.package.image %}
|
|
|
|
<img src="{{component.package.image.url}}" class="component-img-small">
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
<td class="align-middle" >
|
|
|
|
{% if component.manufacturer %}
|
2021-11-14 20:38:19 +01:00
|
|
|
<a href="{% url 'parts-manufacturers-detail' uuid=component.manufacturer.id %}" class="link-primary text-decoration-none">{{component.manufacturer.name}}</a>
|
2021-11-11 20:51:02 +01:00
|
|
|
{% if component.manufacturer.image %}
|
|
|
|
<img src="{{component.manufacturer.image.url}}" class="component-img-small">
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
<td class="align-middle">
|
|
|
|
{% if component.component_type %}{{component.component_type.class_name}}{% endif %}
|
|
|
|
</td>
|
|
|
|
<td class="align-middle">
|
|
|
|
{{component.get_total_amount}}
|
|
|
|
</td>
|
2021-11-10 19:38:39 +01:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2021-11-13 21:05:52 +01:00
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<h2>Description</h2>
|
|
|
|
{% if component.description %}
|
|
|
|
{{component.description|linebreaks}}
|
|
|
|
{% else %}
|
|
|
|
<div class="alert alert-secondary" role="alert">
|
|
|
|
No description available
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2021-11-10 19:38:39 +01:00
|
|
|
</div>
|
2021-11-13 21:05:52 +01:00
|
|
|
<div class="col-4">
|
|
|
|
{% if component.pref_distri %}
|
|
|
|
<h4>Preferred Distributor</h4>
|
|
|
|
<div class="d-flex align-items-center">
|
|
|
|
{% if component.pref_distri.image %}
|
|
|
|
<div class="flex-shrink-0">
|
|
|
|
<img src="{{component.pref_distri.image.url}}" alt="{{component.pref_distri.name}}" class="component-img-big">
|
|
|
|
</div>
|
|
|
|
<div class="flex-grow-1 ms-2">
|
|
|
|
<h6>{{component.pref_distri.name}}</h6>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-01-03 22:53:57 +01:00
|
|
|
<div class="row mt-2">
|
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<th scope="col">Storage</th>
|
|
|
|
<th scope="col">Amount</th>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for stock in stocks %}
|
|
|
|
<tr>
|
|
|
|
<td><a class="text-decoration-none text-primary" href="{% url 'parts-stocks-detail' uuid=stock.storage.id %}">{{stock.storage.get_full_path}}</a></td>
|
|
|
|
<td>{{stock.amount}}</td>
|
|
|
|
<tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2021-11-12 20:14:02 +01:00
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
2022-01-03 17:38:50 +01:00
|
|
|
<h3>Parameters <button class="btn btn-success" data-bs-toggle="modal" data-bs-target="#new-component-parameter-modal"><i class="bi bi-plus-circle"></i></button></h3>
|
2022-01-03 22:53:57 +01:00
|
|
|
<table class="table align-middle mb-3">
|
2022-01-03 17:38:50 +01:00
|
|
|
<thead>
|
|
|
|
<th scope="col">Parameter</th>
|
|
|
|
<th scope="col">Value</th>
|
|
|
|
<th scope="col"></th>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2022-01-10 19:22:34 +01:00
|
|
|
{% for param in package_parameters %}
|
|
|
|
<td>
|
|
|
|
<h6 {% if param.parameter_type.parameter_description %} class="accordion-header" data-bs-toggle="collapse" data-bs-target="#collapse-pkg-parameter-desc-{{forloop.counter}}"{% endif %}>
|
|
|
|
{{param.parameter_type.parameter_name}}
|
|
|
|
</h6>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{param.resolved_value_as_string}}
|
|
|
|
</td>
|
2022-01-11 19:35:09 +01:00
|
|
|
<td><span class="text-secondary">from Package</span></td>
|
2022-01-10 19:22:34 +01:00
|
|
|
{% endfor %}
|
2022-01-03 17:38:50 +01:00
|
|
|
{% for param in parameters %}
|
|
|
|
<tr>
|
2022-01-03 22:53:57 +01:00
|
|
|
<td>
|
|
|
|
<h6 {% if param.parameter_type.parameter_description %} class="accordion-header" data-bs-toggle="collapse" data-bs-target="#collapse-parameter-desc-{{forloop.counter}}"{% endif %}>
|
|
|
|
{{param.parameter_type.parameter_name}}
|
|
|
|
</h6>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{param.resolved_value_as_string}}
|
|
|
|
</td>
|
2022-01-03 17:38:50 +01:00
|
|
|
<td>
|
|
|
|
<form method="post">
|
|
|
|
{% csrf_token %}
|
|
|
|
<input type="hidden" value="{{param.id}}" name="param_num">
|
|
|
|
<button class="btn btn-danger" name="submit-delete-param">X</button>
|
|
|
|
</form>
|
2022-01-03 22:53:57 +01:00
|
|
|
</td>
|
2022-01-03 17:38:50 +01:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2022-01-03 22:53:57 +01:00
|
|
|
<div class="accordion" id="accordion-param-desc">
|
|
|
|
{% for param in parameters %}
|
|
|
|
{% if param.parameter_type.parameter_description %}
|
|
|
|
<div class="collapse accordion-collapse" id="collapse-parameter-desc-{{forloop.counter}}" data-bs-parent="#accordion-param-desc">
|
2022-01-10 19:22:34 +01:00
|
|
|
{{param.parameter_type.parameter_description}}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% for param in package_parameters %}
|
|
|
|
{% if param.parameter_type.parameter_description %}
|
|
|
|
<div class="collapse accordion-collapse" id="collapse-pkg-parameter-desc-{{forloop.counter}}" data-bs-parent="#accordion-param-desc">
|
2022-01-03 22:53:57 +01:00
|
|
|
{{param.parameter_type.parameter_description}}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2021-11-12 20:14:02 +01:00
|
|
|
</div>
|
|
|
|
<div class="col">
|
2022-01-02 16:23:49 +01:00
|
|
|
<h3>Distributor Part Numbers <button class="btn btn-success" data-bs-toggle="modal" data-bs-target="#new-distributor-number-modal"><i class="bi bi-plus-circle"></i></button></h3>
|
2022-01-03 22:53:57 +01:00
|
|
|
<table class="table align-middle">
|
2022-01-02 16:23:49 +01:00
|
|
|
<thead>
|
|
|
|
<th scope="col">Distributor</th>
|
|
|
|
<th scope="col">Part Number</th>
|
|
|
|
<th scope="col"></th>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for num in distri_nums %}
|
|
|
|
<tr>
|
|
|
|
<td><a class="link-primary text-decoration-none" href="{% url 'parts-distributors-detail' uuid=num.distributor.id %}">{{num.distributor.name}}</a></td>
|
|
|
|
<td>{{num.distributor_part_number}}</td>
|
|
|
|
<td>
|
|
|
|
<form method="post">
|
|
|
|
{% csrf_token %}
|
|
|
|
<input type="hidden" value="{{num.id}}" name="distributor_num">
|
|
|
|
<button class="btn btn-danger" name="submit-delete-distributor-num">X</button>
|
|
|
|
</form>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2021-11-12 20:14:02 +01:00
|
|
|
</div>
|
2021-11-13 21:05:52 +01:00
|
|
|
</div>
|
2021-11-09 18:44:28 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-11-09 16:35:11 +01:00
|
|
|
</div>
|
2021-11-09 18:44:28 +01:00
|
|
|
|
|
|
|
{% 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 %}
|
2022-01-01 17:53:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
<!-- Delete modal -->
|
|
|
|
<div class="modal fade" id="component-delete-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">
|
|
|
|
<h4>Delete this Component?</h4>
|
|
|
|
{% if delete_error %}
|
|
|
|
<div class="alert alert-danger">
|
|
|
|
{{delete_error}}
|
|
|
|
</div>
|
|
|
|
{% if protected_stuff %}
|
|
|
|
<h4>Following prevent the deletion:</h4>
|
|
|
|
<ul>
|
|
|
|
{% for elem in protected_stuff %}
|
|
|
|
<li>{{elem}}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
<form action="" method="post">
|
|
|
|
{% csrf_token %}
|
|
|
|
<button type="submit" class="btn btn-danger" name="submit-component-delete"><i class="bi bi-file-x"></i> Delete {{component.name}}</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2022-01-02 16:23:49 +01:00
|
|
|
{% include 'parts/modals/new-distributor-number-modal.html' with component_name=component.name form=new_distri_num_form %}
|
2022-01-01 17:18:08 +01:00
|
|
|
{% include 'parts/modals/edit-component-modal.html' with heading="Edit "|add:component.name form=comp_form %}
|
2022-01-03 17:38:50 +01:00
|
|
|
{% include 'parts/modals/new-component-parameter-modal.html' with component_name=component.name form=new_param_form %}
|
2021-11-10 19:38:39 +01:00
|
|
|
{% endblock content %}
|
|
|
|
|
|
|
|
{% block custom_scripts %}
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
2022-01-01 17:53:10 +01:00
|
|
|
{% if comp_form.errors %}
|
2021-11-10 19:38:39 +01:00
|
|
|
bootstrap.Modal.getOrCreateInstance(document.getElementById('comp-edit-modal')).show()
|
|
|
|
{% endif %}
|
2022-01-01 17:53:10 +01:00
|
|
|
{% if delete_error %}
|
|
|
|
bootstrap.Modal.getOrCreateInstance(document.getElementById('component-delete-modal')).show();
|
|
|
|
{% endif %}
|
2022-01-02 16:23:49 +01:00
|
|
|
{% if new_distri_num_form.errors %}
|
|
|
|
bootstrap.Modal.getOrCreateInstance(document.getElementById('new-distributor-number-modal')).show();
|
|
|
|
{% endif %}
|
2022-01-03 17:38:50 +01:00
|
|
|
{% if new_param_form.errors %}
|
|
|
|
bootstrap.Modal.getOrCreateInstance(document.getElementById('new-component-parameter-modal')).show();
|
|
|
|
{% endif %}
|
2021-11-10 19:38:39 +01:00
|
|
|
</script>
|
|
|
|
{% endblock custom_scripts %}
|
2021-11-09 18:44:28 +01:00
|
|
|
|