]> git.p6c8.net - pcdenotes.git/blobdiff - notes/templates/note_list.html
Enabled wrapping of the pagination bar
[pcdenotes.git] / notes / templates / note_list.html
index e996fb251595e36ffdd3185e62022096d6183424..91131d8efd6e77b4638c7845f011a232be6cb214 100644 (file)
@@ -1,20 +1,23 @@
 {% extends "note_base.html" %}
 {% extends "note_base.html" %}
-{% load markdownify %}
 
 {% block title %}Notes{% endblock %}
 
 {% block content %}
 
 {% block title %}Notes{% endblock %}
 
 {% block content %}
-  {% for note in notes %}
-  <article class="container mt-5">
-    <h2>{{ note.title }}</h2>
-    <p>ID: {{ note.id }}</p>
-    <div>{{ note.content|linebreaksbr|markdownify }}</div>
-    <p>Link: <a href="{{ note.get_absolute_url }}">View</a></p>
-    <p>Date: {{ note.created_at|date:"Y-m-d H:i" }}</p>
-  </article>
+  {% for note in notes_page %}
+  {% include "note.html" %}
   {% empty %}
   <p>No notes</p>
   {% endfor %}
 
   {% empty %}
   <p>No notes</p>
   {% endfor %}
 
-  <p>Number of notes: {{ notes_count }}</p>
+  {% if page_count > 1 %}
+    <ul class="pagination flex-wrap mt-5">
+      {% for page in pages %}
+        {% if page.number != page_number %}
+          <li class="page-item"><a href="?page={{ page.number }}" class="page-link">{{ page.number }}</a></li>
+        {% else %}
+          <li class="page-item active"><span class="page-link">{{ page.number }}</span></li>
+        {% endif %}
+      {% endfor %}
+    </ul>
+  {% endif %}
 {% endblock %}
\ No newline at end of file
 {% endblock %}
\ No newline at end of file

patrick-canterino.de