shimatta-kenkyusho/shimatta_kenkyusho/templates/parts/stocks.html

86 lines
4.1 KiB
HTML

{% extends 'base.html' %}
{% block content %}
<div class="container">
<div class="row">
<div class="col-md">
<h1>Low Stocks</h1>
<div class="list-group">
{% for low in low_stocks %}
<a href="{% url 'parts-stocks-detail' uuid=low.storage.id %}?search={{low.component.id|urlencode}}" class="text-decoration-none">
<li class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">
<div class="flex-shrink-0">
{% if low.component.get_resolved_image %}
<img src="{{low.component.get_resolved_image}}" style="max-width:64px;max-height:64px;" alt="{{ low.component.name }}" class="mr-3">
{% else %}
{% load static %}
<img src="{% static 'css/icons/card-image.svg' %}" style="width:64px;max-height:64px;" alt="{{ low.component.name }}" class="mr-3">
{% endif %}
</div>
<div class="flex-grow-1 ms-3">
<h5 class="mt-0">{{ low.component.name }}{% if low.component.package %} in {{ low.component.package }}{% endif %}</h5>
{{ low.storage }}
</div>
{% if low.storage.responsible.username == view.request.user.username %}
<span class="badge bg-danger rounded-pill">{{low.amount}} / {{low.watermark}}</span>
{% else %}
<span class="badge bg-primary rounded-pill">{{low.amount}} / {{low.watermark}}</span>
{% endif %}
</li></a>
{% endfor %}
</div>
{% include 'paginator.html' with paginator=low_stocks get_param='low_stock_page' aria_label='Low Stock Page Navigation' %}
</div>
<div class="col-md">
<h1>Storages <button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#add-sub-modal"><i class="bi bi-plus-circle"></i></button></h1>
<div class="list-group">
{% for storage in storages %}
<a href="{% url 'parts-stocks-detail' uuid=storage.id %}" class="text-decoration-none">
<li class="list-group-item list-group-item-action justify-content-between align-items-center d-flex">
<div>
<h5>{{storage.name}}</h5>
Responsible: {{ storage.responsible }}
</div>
<span class="badge bg-primary rounded-pill">{{storage.get_total_stock_amount}}</span>
</li>
</a>
{% endfor %}
</div>
{% include 'paginator.html' with paginator=storages get_param='storage_page' aria_label='Storage Page Navigation'%}
</div>
</div>
<!-- Add storage modal form -->
{% with add_storage_form as form %}
{% include 'parts/modals/new-substorage-modal.html' %}
{% endwith %}
</div>
{% endblock content %}
{% block custom_scripts %}
<script type="text/javascript">
{% if add_storage_form.errors %}
var addSubStorageModal = document.querySelector('#add-sub-modal');
var modal = bootstrap.Modal.getOrCreateInstance(addSubStorageModal);
modal.show();
{% endif %}
new AutocompleteText('{{add_storage_form.responsible.id_for_label}}', '{{add_storage_form.responsible.id_for_label}}-ac-dropdown',
function(search, autocomplete_obj) {
api_search_user(search, function(results) {
var usernames = new Array();
console.log(results);
for (var i = 0; i < results.results.length; i++) {
usernames.push(results.results[i].username);
}
console.log(usernames);
autocomplete_obj.show_results(usernames);
}, function(){});
});
</script>
{% endblock custom_scripts %}