Files
fizzy/app/views/accounts/users/index.html.erb
T
2024-10-21 15:57:54 -06:00

29 lines
994 B
Plaintext

<% @page_title = "People on the account" %>
<% content_for :header do %>
<nav>
<%= link_to root_path, class: "btn flex-item-justify-start" do %>
<%= image_tag "arrow-left.svg", aria: { hidden: true }, size: 24 %>
<span class="for-screen-reader">Go back</span>
<% end %>
<%= button_to session_path, method: :delete, class: "btn", form_class: "flex-item-justify-end" do %>
<%= image_tag "logout.svg", aria: { hidden: true }, size: 24 %>
<span class="for-screen-reader">Sign out</span>
<% end %>
</nav>
<% end %>
<div class="panel borderless center pad fill-shade flex flex-column margin-block">
<%= render "accounts/users/invite" %>
</div>
<div class="panel borderless center pad fill-none flex flex-column gap">
<%= render partial: "accounts/users/user", collection: @users %>
</div>
<div class="panel borderless center pad fill-none flex flex-column gap">
<h2>Workflows</h2>
<%= turbo_frame_tag :workflows, src: workflows_path %>
</div>