mirror of
https://github.com/we-promise/sure.git
synced 2026-04-10 07:44:48 +00:00
* Add institution management * Allow user to select institution on create or edit * Improve redirect behavior * Final cleanup * i18n normalization
11 lines
405 B
Plaintext
11 lines
405 B
Plaintext
<%= modal do %>
|
|
<article class="mx-auto w-full p-4 space-y-4 min-w-[350px]">
|
|
<header class="flex justify-between">
|
|
<h2 class="font-medium text-xl"><%= t(".edit", institution: @institution.name) %></h2>
|
|
<%= lucide_icon "x", class: "w-5 h-5 text-gray-500", data: { action: "click->modal#close" } %>
|
|
</header>
|
|
|
|
<%= render "form", institution: @institution %>
|
|
</article>
|
|
<% end %>
|