Add Translations
mix phx.gen.live Translations Translation translations \ lang:string title:string teaser:text content:map \ date:utc_datetime user_id:references:users \ public:boolean unauthorized:boolean article_id:references:articles
This commit is contained in:
21
lib/outlook_web/live/translation_live/show.ex
Normal file
21
lib/outlook_web/live/translation_live/show.ex
Normal file
@ -0,0 +1,21 @@
|
||||
defmodule OutlookWeb.TranslationLive.Show do
|
||||
use OutlookWeb, :live_view
|
||||
|
||||
alias Outlook.Translations
|
||||
|
||||
@impl true
|
||||
def mount(_params, _session, socket) do
|
||||
{:ok, socket}
|
||||
end
|
||||
|
||||
@impl true
|
||||
def handle_params(%{"id" => id}, _, socket) do
|
||||
{:noreply,
|
||||
socket
|
||||
|> assign(:page_title, page_title(socket.assigns.live_action))
|
||||
|> assign(:translation, Translations.get_translation!(id))}
|
||||
end
|
||||
|
||||
defp page_title(:show), do: "Show Translation"
|
||||
defp page_title(:edit), do: "Edit Translation"
|
||||
end
|
||||
Reference in New Issue
Block a user