18 lines
566 B
HTML
18 lines
566 B
HTML
<section
|
|
id="id_applet_my_notes"
|
|
style="--applet-cols: {{ entry.applet.grid_cols }}; --applet-rows: {{ entry.applet.grid_rows }};"
|
|
>
|
|
<h2><a href="{% url 'my_notes' user.id %}" class="my-notes-main">My Notes</a></h2>
|
|
<div class="my-notes-container">
|
|
<ul>
|
|
{% for note in recent_notes %}
|
|
<li>
|
|
<a href="{{ note.get_absolute_url }}">{{ note.name }}</a>
|
|
</li>
|
|
{% empty %}
|
|
<li>No notes yet.</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</section>
|