18 lines
558 B
HTML
18 lines
558 B
HTML
|
|
<section
|
||
|
|
id="id_applet_my_notes"
|
||
|
|
style="--applet-cols: {{ entry.applet.grid_cols }}; --applet-rows: {{ entry.applet.grid_rows }};"
|
||
|
|
>
|
||
|
|
<a href="{% url 'my_notes' user.id %}" class="my-notes-main">My notes:</a>
|
||
|
|
<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>
|