mirror of
https://github.com/System-End/theseus.git
synced 2026-04-19 22:15:09 +00:00
28 lines
No EOL
717 B
Text
28 lines
No EOL
717 B
Text
<%= render "letter/queues/queue", queue: instant_queue %>
|
|
<div class="mt-4">
|
|
<h4>Instant Queue Details</h4>
|
|
<% if instant_queue.user_facing_title.present? %>
|
|
<p>
|
|
<strong>Display Title:</strong>
|
|
<%= instant_queue.user_facing_title %>
|
|
</p>
|
|
<% end %>
|
|
<p>
|
|
<strong>Template:</strong>
|
|
<%= instant_queue.template %>
|
|
</p>
|
|
<p>
|
|
<strong>Postage Type:</strong>
|
|
<%= instant_queue.postage_type.titleize %>
|
|
</p>
|
|
<% if instant_queue.indicia? %>
|
|
<p>
|
|
<strong>Payment Account:</strong>
|
|
<%= instant_queue.usps_payment_account&.display_name %>
|
|
</p>
|
|
<% end %>
|
|
<p>
|
|
<strong>QR Code:</strong>
|
|
<%= instant_queue.include_qr_code ? "Yes" : "No" %>
|
|
</p>
|
|
</div> |