23486a929d
- Made refresh button icon visible - Edit Capacity button size and alignment - Medium font on dashboard
44 lines
1.4 KiB
HTML
44 lines
1.4 KiB
HTML
{% for d in data %}
|
|
<div class="dashboard-list-item" style="padding: 7px 15px;">
|
|
<div class="row">
|
|
<div class="col-sm-2" style="margin-top: 8px;">
|
|
<a data-type="warehouse" data-name="{{ d.warehouse }}">{{ d.warehouse }}</a>
|
|
</div>
|
|
<div class="col-sm-2" style="margin-top: 8px; ">
|
|
<a data-type="item" data-name="{{ d.item_code }}">{{ d.item_code }}</a>
|
|
</div>
|
|
<div class="col-sm-1" style="margin-top: 8px; ">
|
|
{{ d.stock_capacity }}
|
|
</div>
|
|
<div class="col-sm-2" style="margin-top: 8px; ">
|
|
{{ d.actual_qty }}
|
|
</div>
|
|
<div class="col-sm-2">
|
|
<div class="progress" title="Occupied Qty: {{ d.actual_qty }}" style="margin-bottom: 4px; height: 7px; margin-top: 14px;">
|
|
<div class="progress-bar" role="progressbar"
|
|
aria-valuenow="{{ d.percent_occupied }}"
|
|
aria-valuemin="0" aria-valuemax="100"
|
|
style="width:{{ d.percent_occupied }}%;
|
|
background-color: {{ d.color }}">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-1" style="margin-top: 8px;">
|
|
{{ d.percent_occupied }}%
|
|
</div>
|
|
{% if can_write %}
|
|
<div class="col-sm-2 text-right" style="margin-top: 2px;">
|
|
<button
|
|
class="btn btn-default btn-xs btn-edit"
|
|
style="margin: 4px 0; float: left;"
|
|
data-warehouse="{{ d.warehouse }}"
|
|
data-item="{{ escape(d.item_code) }}"
|
|
data-company="{{ escape(d.company) }}">
|
|
{{ __("Edit Capacity") }}
|
|
</button>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|