diff options
author | luxagraf <sng@luxagraf.net> | 2018-07-07 20:41:09 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-07-07 20:41:09 -0400 |
commit | 6a2393e6819ea09aeb559354a69746750aa8cbdf (patch) | |
tree | 0ac9890740f9afcd9720ea9b550a3895d95ecb50 /app/notes | |
parent | fe13c3830c6b36fb8f78009a788650a992cb3070 (diff) |
added campsite model, refactored some code to avoid circular imports,
reorganized some auxilary functions and fixed broken build JS.
Diffstat (limited to 'app/notes')
-rw-r--r-- | app/notes/models.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/notes/models.py b/app/notes/models.py index 86b2918..8735056 100644 --- a/app/notes/models.py +++ b/app/notes/models.py @@ -5,9 +5,8 @@ from django.conf import settings from django.urls import reverse from locations.models import Location -from utils.widgets import markdown_to_html from locations.models import CheckIn -from jrnl.models import render_images +from utils.util import markdown_to_html, render_images class Note(models.Model): |