diff options
author | luxagraf <sng@luxagraf.net> | 2020-02-05 21:11:57 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-02-05 21:11:57 -0500 |
commit | 2f80394a309e01f4a77dc4b1094b7185033c6757 (patch) | |
tree | e36e6d8e2080318510b360eae096f1bfc3a25bcc | |
parent | 33209aed7c3e858d95576bdcfefa17c3f5d7597b (diff) |
fixed some bugs in lttr
-rw-r--r-- | app/lttr/models.py | 1 | ||||
-rw-r--r-- | app/lttr/templates/lttr/confirm_activate.html | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/app/lttr/models.py b/app/lttr/models.py index 4ab6030..33a6735 100644 --- a/app/lttr/models.py +++ b/app/lttr/models.py @@ -11,6 +11,7 @@ from django.utils.crypto import get_random_string from taggit.managers import TaggableManager +from utils.util import render_images, parse_video, markdown_to_html from taxonomy.models import TaggedItems from photos.models import LuxImage, LuxImageSize diff --git a/app/lttr/templates/lttr/confirm_activate.html b/app/lttr/templates/lttr/confirm_activate.html index d67ee1b..f16c4ee 100644 --- a/app/lttr/templates/lttr/confirm_activate.html +++ b/app/lttr/templates/lttr/confirm_activate.html @@ -11,7 +11,7 @@ <main role="main" id="essay-archive" class="essay-archive archive-list"> <div class="essay-intro"> <h2>You're confirmed, thanks for joining.</h2> - <p>If you'd like you can <a href="/lttr/">visit the archives</a> of past mailings.</p> + <p>If you'd like you can <a href="{% url 'lttr:list'%}">visit the archives</a> of past mailings.</p> </div> </main> {%endblock%} |