git.p6c8.net
/
pcdenotes.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Removed now unnecessary slash
[pcdenotes.git]
/
notes
/
models.py
diff --git
a/notes/models.py
b/notes/models.py
index e4802217c3f4fb49853ad6aae494390eb04df19f..ed86192e13d9e860afc436bb11b6af91efeb98bd 100644
(file)
--- a/
notes/models.py
+++ b/
notes/models.py
@@
-27,3
+27,8
@@
class Note(models.Model):
return reverse("notes:note_detail", kwargs={"note_slug": self.slug})
#return "/notes/%s" % (self.slug)
+ def is_draft(self):
+ return self.status == 0
+
+ def is_published(self):
+ return self.status == 1
patrick-canterino.de