From 38f196fb035a61f851e16315e74d30f205cf3e66 Mon Sep 17 00:00:00 2001 From: Charles Connell Date: Tue, 20 May 2014 19:07:27 -0400 Subject: [PATCH] Always allow staff to edit notes --- karmaworld/templates/notes/note_base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/karmaworld/templates/notes/note_base.html b/karmaworld/templates/notes/note_base.html index 4b1593a..00bd48c 100644 --- a/karmaworld/templates/notes/note_base.html +++ b/karmaworld/templates/notes/note_base.html @@ -150,7 +150,7 @@ {% endif %} - {% if note.user == request.user %} + {% if note.user == request.user or user.is_staff %}    {% endif %} -- 2.25.1