chiya/lib/chiya_web/controllers/note_html/edit.html.heex

17 lines
373 B
Text
Raw Normal View History

2023-03-05 17:23:16 +01:00
<.header>
Edit Note “<%= @note.name %>”
2023-07-20 20:30:51 +02:00
<:actions>
<.link href={~p"/admin/notes/#{@note.id}"}>
<.button><.icon name="hero-arrow-left" /> Back to Note</.button>
</.link>
</:actions>
2023-03-05 17:23:16 +01:00
</.header>
2023-04-10 19:22:28 +02:00
<.note_form
changeset={@changeset}
action={~p"/admin/notes/#{@note}"}
channels={@channels}
selected_channels={@selected_channels}
2023-04-10 19:22:28 +02:00
tags={@tags}
2023-07-24 18:39:25 +02:00
/>