23 lines
626 B
Text
23 lines
626 B
Text
<.header>
|
|
Listing Notes
|
|
<:actions>
|
|
<.link href={~p"/notes/new"}>
|
|
<.button>New Note</.button>
|
|
</.link>
|
|
</:actions>
|
|
</.header>
|
|
|
|
<.table id="notes" rows={@notes} row_click={&JS.navigate(~p"/notes/#{&1}")}>
|
|
<:col :let={note} label="Content">{note.content}</:col>
|
|
<:action :let={note}>
|
|
<div class="sr-only">
|
|
<.link navigate={~p"/notes/#{note}"}>Show</.link>
|
|
</div>
|
|
<.link navigate={~p"/notes/#{note}/edit"}>Edit</.link>
|
|
</:action>
|
|
<:action :let={note}>
|
|
<.link href={~p"/notes/#{note}"} method="delete" data-confirm="Are you sure?">
|
|
Delete
|
|
</.link>
|
|
</:action>
|
|
</.table>
|