]> git.p6c8.net - pcdenotes.git/commitdiff
Fixed some things in the templates
authorPatrick Canterino <patrick@patrick-canterino.de>
Sun, 23 Jan 2022 20:08:50 +0000 (21:08 +0100)
committerPatrick Canterino <patrick@patrick-canterino.de>
Sun, 23 Jan 2022 20:08:50 +0000 (21:08 +0100)
notes/templates/note_base.html
notes/templates/note_detail.html
notes/templates/note_list.html

index d85e8752c5d55709a9334b525a41fe63d06c3c44..ca4eaaf7935052e11dba2fe8e7c02a7ee92c2b2c 100644 (file)
@@ -15,6 +15,8 @@
     <h1><a href="/" class="link-light">Notes</a></h1>
   </div>
 
-{% block content %}{% endblock %}
+  <div id="content" class="container mt-5">
+    {% block content %}{% endblock %}
+  </div>
 </body>
 </html>
\ No newline at end of file
index f760e4b330e16d5e5d078e93ec85f1a1cd4d8a11..22ea0e068aa39df1e0ff6c29d146c2494e2de552 100644 (file)
@@ -4,7 +4,7 @@
 {% block title %}Notes - {{ note.title }}{% endblock %}
 
 {% block content %}
-  <article class="container mt-5">
+  <article>
     <h2>{{ note.title }}</h2>
     {{ note.content|linebreaksbr|markdownify }}
     <p>Date: {{ note.created_at|date:"Y-m-d H:i" }}</p>
index bf278e16c38033b481f74afa057099d282ae7693..ffc256a1dd2550f55d14e51883fb244717303db8 100644 (file)
@@ -6,10 +6,8 @@
 {% block content %}
   {% for note in notes_page %}
   <article class="container mt-5">
-    <h2>{{ note.title }}</h2>
-    <p>ID: {{ note.id }}</p>
+    <h2><a href="{{ note.get_absolute_url }}" class="link-dark">{{ note.title }}</a></h2>
     <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>
   {% empty %}
@@ -25,6 +23,4 @@
       {% endifnotequal %}
     {% endfor %}
   </ul>
-
-  <p>Number of notes: {{ notes_count }}</p>
 {% endblock %}
\ No newline at end of file

patrick-canterino.de