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

14 lines
314 B
Text
Raw Normal View History

2023-03-05 17:23:16 +01:00
<.header>
Edit Note <%= @note.id %>
<:subtitle>Use this form to manage note records in your database.</:subtitle>
</.header>
2023-04-10 19:22:28 +02:00
<.note_form
changeset={@changeset}
action={~p"/admin/notes/#{@note}"}
channels={@channels}
tags={@tags}
/>
2023-03-05 17:23:16 +01:00
2023-05-23 22:19:37 +02:00
<.back navigate={~p"/admin/notes/#{@note.id}"}>Back to note</.back>