mirror of
https://github.com/we-promise/sure.git
synced 2026-04-17 11:04:14 +00:00
* Add institution management * Allow user to select institution on create or edit * Improve redirect behavior * Final cleanup * i18n normalization
30 lines
1.6 KiB
Plaintext
30 lines
1.6 KiB
Plaintext
<%= turbo_frame_tag dom_id(account) do %>
|
|
<div class="p-4 flex items-center justify-between gap-3 group/account">
|
|
<div class="flex items-center gap-3">
|
|
<div class="w-8 h-8 flex items-center justify-center rounded-full text-xs font-medium <%= account.is_active ? "bg-blue-500/10 text-blue-500" : "bg-gray-500/10 text-gray-500" %>">
|
|
<%= account.name[0].upcase %>
|
|
</div>
|
|
<%= link_to account.name, account, class: [(account.is_active ? "text-gray-900" : "text-gray-400"), "text-sm font-medium hover:underline"], data: { turbo_frame: "_top" } %>
|
|
|
|
<%= link_to edit_account_path(account), data: { turbo_frame: :modal }, class: "group-hover/account:flex hidden hover:opacity-80 items-center justify-center" do %>
|
|
<%= lucide_icon "pencil-line", class: "w-4 h-4 text-gray-500" %>
|
|
<% end %>
|
|
</div>
|
|
<div class="flex items-center gap-8">
|
|
<p class="text-sm font-medium <%= account.is_active ? "text-gray-900" : "text-gray-400" %>">
|
|
<%= format_money account.balance_money %>
|
|
</p>
|
|
|
|
<%= form_with model: account,
|
|
namespace: account.id,
|
|
builder: ActionView::Helpers::FormBuilder,
|
|
data: { controller: "auto-submit-form", turbo_frame: "_top" } do |form| %>
|
|
<div class="relative inline-block select-none">
|
|
<%= form.check_box :is_active, { class: "sr-only peer", data: { "auto-submit-form-target": "auto" } } %>
|
|
<%= form.label :is_active, " ".html_safe, class: "maybe-switch" %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|