2024-09-11 19:04:39 +02:00
|
|
|
<%# app/views/invite_codes/index.html.erb %>
|
|
|
|
<%= turbo_frame_tag "invite_codes" do %>
|
|
|
|
<% if @invite_codes.present? %>
|
|
|
|
<%= render @invite_codes %>
|
|
|
|
<% else %>
|
|
|
|
<div class="flex flex-col items-center w-full h-64 bg-white text-center justify-center">
|
2025-02-13 11:31:07 -05:00
|
|
|
<%= lucide_icon "binary", class: "w-6 h-6 text-sm text-secondary" %>
|
2024-09-11 19:04:39 +02:00
|
|
|
<p class="text-base pt-4"><%= t(".no_invite_codes") %></p>
|
2025-02-13 11:31:07 -05:00
|
|
|
<p class="text-sm text-secondary pt-2 w-2/3"><%= t(".invite_code_description") %></p>
|
2024-09-11 19:04:39 +02:00
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|