summaryrefslogtreecommitdiff
path: root/app/notes
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2014-07-08 10:27:04 -0400
committerluxagraf <sng@luxagraf.net>2014-07-08 10:27:04 -0400
commit6700484522b3ed7f10d4df8417549cf802a1855e (patch)
tree34745c0e5f88a8d401202c082fbbfd471aadfd11 /app/notes
parent2856c87d29c98b4f96fef5483b7f20971285d159 (diff)
changed url structure
Diffstat (limited to 'app/notes')
-rw-r--r--app/notes/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/notes/models.py b/app/notes/models.py
index 818a139..62b8992 100644
--- a/app/notes/models.py
+++ b/app/notes/models.py
@@ -48,7 +48,7 @@ class Note(models.Model):
return self.slug
def get_absolute_url(self):
- return '/notes/%s/%s' % (self.date_created.strftime("%Y/%m").lower(), self.slug)
+ return '/field-notes/%s/%s' % (self.date_created.strftime("%Y/%m").lower(), self.slug)
@property
def state(self):