theseus/app/views/template_previews/index.html.erb
2025-11-21 16:15:59 -08:00

22 lines
942 B
Text

<% content_for :title, "Template Previews" %>
<div class="max-w-4xl mx-auto p-8">
<h1 class="text-3xl font-bold mb-8">Letter Template Previews</h1>
<div class="grid gap-4">
<% @templates.each do |template| %>
<div class="border rounded-lg p-4 bg-white shadow-sm">
<h2 class="text-xl font-semibold mb-2"><%= template.to_s.split("::").last.humanize %></h2>
<p class="text-gray-600 mb-4 font-mono text-sm"><%= template %></p>
<div class="flex gap-3">
<%= link_to "Preview PDF", template_preview_path(template),
target: "_blank",
class: "bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded" %>
<%= link_to "Preview with QR", template_preview_path(template, qr: true),
target: "_blank",
class: "bg-green-500 hover:bg-green-600 text-white px-4 py-2 rounded" %>
</div>
</div>
<% end %>
</div>
</div>