14 lines
359 B
HTML
14 lines
359 B
HTML
<h4 class="py-4 text-xl text-beige">
|
|
Notes
|
|
{% if logged_in %}
|
|
<button title="Edita les notes"
|
|
class="mx-1"
|
|
hx-get="/api/sessio/{{ session_id }}/notes/editor"
|
|
hx-target="#notes"
|
|
hx-swap="innerHTML">
|
|
<i class="fa fa-pencil" aria-hidden="true"></i>
|
|
</button>
|
|
{% endif %}
|
|
</h4>
|
|
{{ notes | safe }}
|