]> git.p6c8.net - pcdenotes.git/blobdiff - notes/templates/note_list.html
Fixed some things in the templates
[pcdenotes.git] / notes / templates / note_list.html
index fb2da3323eeb119467cf1c05c1706a8440039364..ffc256a1dd2550f55d14e51883fb244717303db8 100644 (file)
@@ -1,26 +1,26 @@
+{% extends "note_base.html" %}
 {% load markdownify %}
 {% load markdownify %}
-<!DOCTYPE html>
 
 
-<html lang="de">
-<head>
-  <title>Notes</title>
-  <meta charset="UTF-8" />
-  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-</head>
-<body>
+{% block title %}Notes{% endblock %}
 
 
-    <h1>Notes</h1>
-    {% for note in notes %}
-    <h2>{{ note.title }}</h2>
-    <p>ID: {{ note.id }}</p>
+{% block content %}
+  {% for note in notes_page %}
+  <article class="container mt-5">
+    <h2><a href="{{ note.get_absolute_url }}" class="link-dark">{{ note.title }}</a></h2>
     <div>{{ note.content|linebreaksbr|markdownify }}</div>
     <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>
     <p>Date: {{ note.created_at|date:"Y-m-d H:i" }}</p>
-    {% empty %}
-    <p>No notes</p>
-    {% endfor %}
-
-    <p>Number of notes: {{ notes_count }}</p>
+  </article>
+  {% empty %}
+  <p>No notes</p>
+  {% endfor %}
 
 
-</body>
-</html>
+  <ul class="pagination">
+    {% for page in pages %}
+      {% ifnotequal 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>
+      {% endifnotequal %}
+    {% endfor %}
+  </ul>
+{% endblock %}
\ No newline at end of file

patrick-canterino.de