chiya/lib/chiya_web/controllers/note_html/edit.html.heex
2023-07-24 18:39:25 +02:00

16 lines
373 B
Text

<.header>
Edit Note “<%= @note.name %>”
<:actions>
<.link href={~p"/admin/notes/#{@note.id}"}>
<.button><.icon name="hero-arrow-left" /> Back to Note</.button>
</.link>
</:actions>
</.header>
<.note_form
changeset={@changeset}
action={~p"/admin/notes/#{@note}"}
channels={@channels}
selected_channels={@selected_channels}
tags={@tags}
/>