Show Context
<%= if @live_action in [:edit] do %>
<.modal return_to={Routes.context_show_path(@socket, :show, @context)}>
<.live_component
module={MemexWeb.ContextLive.FormComponent}
id={@context.id}
title={@page_title}
action={@live_action}
context={@context}
return_to={Routes.context_show_path(@socket, :show, @context)}
/>
<% end %>
-
Title:
<%= @context.title %>
-
Content:
<%= @context.content %>
-
Tag:
<%= @context.tag %>
-
Visibility:
<%= @context.visibility %>
<%= live_patch "Edit", to: Routes.context_show_path(@socket, :edit, @context), class: "button" %> |
<%= live_redirect "Back", to: Routes.context_index_path(@socket, :index) %>