53 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			2.5 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>
 | 
						|
        </div>
 | 
						|
        <div class="col-md">
 | 
						|
           <h1>Storages</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>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
{% endblock content %} |