comfycamp/lib/comfycamp_web/controllers/notes_html/show.html.heex
2024-07-29 18:07:44 +05:00

13 lines
262 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div>
<h1><%= @note.title %></h1>
<.back navigate={~p"/notes"}>К списку заметок</.back>
<p>Создана: <%= @note.inserted_at %></p>
<p>Обновлена: <%= @note.updated_at %></p>
<pre>
<%= @note.markdown %>
</pre>
</div>