41 lines
1.4 KiB
Plaintext
41 lines
1.4 KiB
Plaintext
<.header>
|
|
Listing Translations
|
|
</.header>
|
|
|
|
<.table id="translations" rows={@translations} row_click={&JS.navigate(~p"/translations/#{&1}")}>
|
|
<:col :let={translation} label="Lang"><%= translation.lang %></:col>
|
|
<:col :let={translation} label="Title"><%= translation.title %></:col>
|
|
<:col :let={translation} label="Teaser"><%= translation.teaser %></:col>
|
|
<%!-- <:col :let={translation} label="Content"><%= translation.content %></:col> --%>
|
|
<:col :let={translation} label="Date"><%= translation.date %></:col>
|
|
<:col :let={translation} label="Public"><%= translation.public %></:col>
|
|
<:col :let={translation} label="Unauthorized"><%= translation.unauthorized %></:col>
|
|
<:action :let={translation}>
|
|
<div class="sr-only">
|
|
<.link navigate={~p"/translations/#{translation}"}>Show</.link>
|
|
</div>
|
|
<.link navigate={~p"/translations/#{translation}/edit"}>Edit</.link>
|
|
</:action>
|
|
<:action :let={translation}>
|
|
<.link phx-click={JS.push("delete", value: %{id: translation.id})} data-confirm="Are you sure?">
|
|
Delete
|
|
</.link>
|
|
</:action>
|
|
</.table>
|
|
|
|
<.modal
|
|
:if={@live_action in [:new, :edit]}
|
|
id="translation-modal"
|
|
show
|
|
on_cancel={JS.navigate(~p"/translations")}
|
|
>
|
|
<.live_component
|
|
module={OutlookWeb.TranslationLive.FormComponent}
|
|
id={@translation.id || :new}
|
|
title={@page_title}
|
|
action={@live_action}
|
|
translation={@translation}
|
|
navigate={~p"/translations"}
|
|
/>
|
|
</.modal>
|