brotherton-erpnext/erpnext/public/js/templates/visual_plant_floor_template.html
Rohit Waghchaure 75bd1e6b65 feat: visual plant floor
(cherry picked from commit 68c997aa067f342f6e432e9f9c84416a0a4cc1bf)
2024-02-05 13:50:44 +00:00

19 lines
732 B
HTML

{% $.each(workstations, (idx, row) => { %}
<div class="workstation-wrapper">
<div class="workstation-image">
<div class="flex items-center justify-center h-32 border-b-grey text-6xl text-grey-100">
<a class="workstation-image-link" href="{{row.workstation_link}}">
{% if(row.status_image) { %}
<img class="workstation-image-cls" src="{{row.status_image}}">
{% } else { %}
<div class="workstation-image-cls workstation-abbr">{{frappe.get_abbr(row.name, 2)}}</div>
{% } %}
</a>
</div>
</div>
<div class="workstation-card text-center">
<p style="background-color:{{row.background_color}};color:#fff">{{row.status}}</p>
<div>{{row.workstation_name}}</div>
</div>
</div>
{% }); %}