mirror of
https://github.com/System-End/shipment-viewer.git
synced 2026-04-19 16:28:19 +00:00
29 lines
No EOL
902 B
Text
29 lines
No EOL
902 B
Text
<div class="card">
|
||
<h4 style="display: inline-block"><%= shipment.icon %> <%= shipment.title_text %></h4> <span style="float: right"><%= shipment.status_icon %></span>
|
||
<hr/>
|
||
<i><%= shipment.type_text %></i><br/>
|
||
<%= shipment.status_text %>
|
||
|
||
<%= shipment["Warehouse–Service"] %>
|
||
<% if shipment.tracking_number %>
|
||
<br/>
|
||
<% if shipment.tracking_link %>
|
||
<%= external_link(shipment.tracking_number, shipment.tracking_link) %>
|
||
<% else %>
|
||
<%= shipment.tracking_number %>
|
||
<% end %>
|
||
<% end %>
|
||
<% if @show_ids %>
|
||
<br/>
|
||
Airtable: <%= external_link(shipment.source_id, shipment.source_url) %>
|
||
<% end %>
|
||
<% if shipment.description.is_a? Array %>
|
||
<br/><b>Contents:</b>
|
||
<ul>
|
||
<% shipment.description.each do |item| %>
|
||
<li><%= item %></li>
|
||
<% end %>
|
||
</ul>
|
||
<% end %>
|
||
<br/><span>Created on <%= shipment.date[..9] %></span>
|
||
</div> |