theseus/app/views/letter/instant_queues/_instant_queue.html.erb
2025-12-19 20:27:12 -05:00

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>