summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/lttr/models.py1
-rw-r--r--app/lttr/templates/lttr/confirm_activate.html2
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%}