diff options
author | luxagraf <sng@luxagraf.net> | 2018-02-24 08:57:16 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-02-24 08:57:16 -0600 |
commit | 01a6d6b481479c88d5be1c427d769acc8e473af2 (patch) | |
tree | e184ce143a1a7d80a2fa5173c82e14908dc81073 /app | |
parent | c0227932bc6609c66a6ecc7525f1a768f3a3fdb9 (diff) |
added util function import to sketches
Diffstat (limited to 'app')
-rw-r--r-- | app/sketches/models.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/sketches/models.py b/app/sketches/models.py index 02fa766..9a3a8af 100644 --- a/app/sketches/models.py +++ b/app/sketches/models.py @@ -1,3 +1,4 @@ +import re from django.contrib.gis.db import models from django.utils import timezone from django.conf import settings @@ -7,6 +8,7 @@ from django.urls import reverse from utils.widgets import markdown_to_html from locations.models import CheckIn +from utils.widgets import parse_image, parse_video def render_images(s): |