cannery/lib/cannery_web/live/ammo_group_live/index.html.heex

94 lines
3.1 KiB
Plaintext
Raw Normal View History

2022-02-01 00:14:14 -05:00
<div class="mx-8 flex flex-col space-y-8 justify-center items-center">
<h1 class="title text-2xl title-primary-500">
2022-02-09 00:20:04 -05:00
<%= gettext("Listing Ammo") %>
2022-02-01 00:14:14 -05:00
</h1>
<%= if @ammo_groups |> Enum.empty?() do %>
<h2 class="title text-xl text-primary-500">
2022-02-09 00:20:04 -05:00
<%= gettext("No Ammo") %> 😔
2022-02-01 00:14:14 -05:00
</h2>
2022-02-09 00:20:04 -05:00
<%= live_patch(dgettext("actions", "Add your first box!"),
2022-02-01 00:14:14 -05:00
to: Routes.ammo_group_index_path(@socket, :new),
2022-02-01 01:08:18 -05:00
class: "btn btn-primary"
) %>
2022-02-01 00:14:14 -05:00
<% else %>
2022-02-09 00:20:04 -05:00
<%= live_patch(dgettext("actions", "New Ammo group"),
2022-02-01 00:14:14 -05:00
to: Routes.ammo_group_index_path(@socket, :new),
2022-02-01 01:08:18 -05:00
class: "btn btn-primary"
) %>
2022-02-01 00:14:14 -05:00
<div class="w-full overflow-x-auto border border-gray-600 rounded-lg shadow-lg bg-black">
<table class="min-w-full table-auto text-center bg-white">
<thead class="border-b border-primary-600">
<tr>
2022-02-01 01:08:18 -05:00
<th class="p-2">
2022-02-09 00:20:04 -05:00
<%= gettext("Count") %>
2022-02-01 01:08:18 -05:00
</th>
<th class="p-2">
2022-02-09 00:20:04 -05:00
<%= gettext("Price paid") %>
2022-02-01 01:08:18 -05:00
</th>
<th class="p-2">
2022-02-09 00:20:04 -05:00
<%= gettext("Notes") %>
2022-02-01 01:08:18 -05:00
</th>
2022-02-01 00:14:14 -05:00
<th class="p-2"></th>
</tr>
</thead>
<tbody id="ammo_groups">
<%= for ammo_group <- @ammo_groups do %>
2022-02-05 01:59:40 -05:00
<tr id={"ammo_group-#{ammo_group.id}"}>
2022-02-01 01:08:18 -05:00
<td class="p-2">
<%= ammo_group.count %>
</td>
2022-02-05 01:59:40 -05:00
2022-02-01 01:08:18 -05:00
<td class="p-2">
<%= if ammo_group.price_paid do %>
$ <%= ammo_group.price_paid |> :erlang.float_to_binary(decimals: 2) %>
<% end %>
2022-02-01 01:08:18 -05:00
</td>
2022-02-05 01:59:40 -05:00
2022-02-01 01:08:18 -05:00
<td class="p-2">
<%= ammo_group.notes %>
</td>
2022-02-01 00:14:14 -05:00
2022-02-05 01:59:40 -05:00
<td class="p-2 w-full h-full space-x-2 flex justify-center items-center">
2022-02-09 00:20:04 -05:00
<%= live_redirect(dgettext("actions", "View"),
to: Routes.ammo_group_show_path(@socket, :show, ammo_group)
) %>
2022-02-05 01:59:40 -05:00
<%= live_patch to: Routes.ammo_group_index_path(@socket, :edit, ammo_group),
class: "text-primary-500 link" do %>
<i class="fa-fw fa-lg fas fa-edit"></i>
<% end %>
<%= link to: "#",
class: "text-primary-500 link",
phx_click: "delete",
phx_value_id: ammo_group.id,
2022-02-09 00:20:04 -05:00
data: [confirm: dgettext("prompts", "Are you sure you want to delete this ammo?")] do %>
2022-02-05 01:59:40 -05:00
<i class="fa-fw fa-lg fas fa-trash"></i>
<% end %>
2022-02-01 00:14:14 -05:00
</td>
</tr>
<% end %>
</tbody>
</table>
</div>
<% end %>
</div>
<%= if @live_action in [:new, :edit] do %>
2022-02-14 01:26:51 -05:00
<.modal return_to={Routes.ammo_group_index_path(@socket, :index)}>
<.live_component
module={CanneryWeb.AmmoGroupLive.FormComponent}
id={@ammo_group.id || :new}
title={@page_title}
action={@live_action}
ammo_group={@ammo_group}
return_to={Routes.ammo_group_index_path(@socket, :index)}
current_user={@current_user}
/>
</.modal>
2022-02-01 00:14:14 -05:00
<% end %>