73 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			3.4 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 %}" 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 }} in {{ low.component.package }}</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 %}
 | 
						|
{% if add_storage_form.errors %}
 | 
						|
<script type="text/javascript">
 | 
						|
    var addSubStorageModal = document.querySelector('#add-sub-modal');
 | 
						|
    var modal = bootstrap.Modal.getOrCreateInstance(addSubStorageModal);
 | 
						|
    modal.show();
 | 
						|
</script>
 | 
						|
{% endif %}
 | 
						|
{% endblock custom_scripts %}
 | 
						|
 |