From 6a0691dfa1af7c040e43aab03646238b92abe235 Mon Sep 17 00:00:00 2001 From: Patrick Canterino Date: Sat, 29 Jan 2022 13:06:23 +0100 Subject: [PATCH] Flipped title of detail view --- notes/templates/note_detail.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes/templates/note_detail.html b/notes/templates/note_detail.html index b097c55..0feb681 100644 --- a/notes/templates/note_detail.html +++ b/notes/templates/note_detail.html @@ -1,7 +1,7 @@ {% extends "note_base.html" %} {% load markdownify %} -{% block title %}Notes - {{ note.title }}{% endblock %} +{% block title %}{{ note.title }} – Notes{% endblock %} {% block content %} {% include "note.html" %} -- 2.34.1