diff --git a/design/templates/comments/comment_notification_email.txt b/design/templates/comments/comment_notification_email.txt
index 9dfb821..63f1493 100644
--- a/design/templates/comments/comment_notification_email.txt
+++ b/design/templates/comments/comment_notification_email.txt
@@ -1,20 +1,3 @@
-{% load url from future %}{% autoescape off %}{% comment %}
-{% endcomment %}A new comment has been posted on your site "{{ site }}, to the page entitled "{{ content_object }}".
-Link to the page: http://{{ site.domain }}{{ content_object.get_absolute_url }}
-
-IP-address: 95.97.240.121{% if comment.title %}
-Title: {{ comment.title }}{% endif %}
-Name: {{ comment.user_name|default:comment.user }}
-Email: {{ comment.user_email }}
-Homepage: {{ comment.user_url }}
-Moderated: {{ comment.is_public|yesno:'no,yes' }}
-
-Comment:
-{{ comment.comment }}
-
-----
-You have the following options available:
- View comment -- http://{{ site.domain }}{{ comment.get_absolute_url }}
- Flag comment -- http://{{ site.domain }}{% url 'comments-flag' comment.pk %}
- Delete comment -- http://{{ site.domain }}{% url 'comments-delete' comment.pk %}
-{% endautoescape %}
\ No newline at end of file
+A comment has been posted on {{ content_object }}.
+The comment reads as follows:
+{{ comment }}
diff --git a/design/templates/comments/deleted.html b/design/templates/comments/deleted.html
index c62a1ff..e608481 100644
--- a/design/templates/comments/deleted.html
+++ b/design/templates/comments/deleted.html
@@ -3,19 +3,6 @@
{% block title %}{% trans "Thanks for removing" %}.{% endblock %}
-{% block extrahead %}
- {{ block.super }}
-
-{% endblock %}
-
{% block content %}
-
{% trans "Thanks for removing the comment" %}
-
- {% blocktrans %}
- Thanks for taking the time to improve the quality of discussion on our site.
- You will be sent back to the article...
- {% endblocktrans %}
-
- {% blocktrans %}
- Thanks for taking the time to improve the quality of discussion on our site.
- You will be sent back to the article...
- {% endblocktrans %}
-
{% trans "Thanks for taking the time to improve the quality of discussion on our site" %}.
{% endblock %}
diff --git a/design/templates/comments/form.html b/design/templates/comments/form.html
index f8bb18d..776a543 100644
--- a/design/templates/comments/form.html
+++ b/design/templates/comments/form.html
@@ -1,18 +1,25 @@
-{% load comments i18n crispy_forms_tags fluent_comments_tags %}{% load url from future %}
-
-{% if not form.target_object|comments_are_open %}
-
{% trans "Comments are closed." %}
-{% else %}
-
-{% endif %}
\ No newline at end of file
+{% load comments i18n %}
+
+
Comments?
+
+
All comments are moderated, so you won’t see it right away. If we’re on the road sometimes it takes a few days, but we’ll get it up as soon as we can. You can use Markdown or HTML to format your comments. The allowed tags are <b>, <i>, <em>, <strong>, <a>. To create a new paragraph hit return twice. Remember Kurt Vonnegut's rule: “god damn it, you’ve got to be kind.”
+
diff --git a/design/templates/comments/list.html b/design/templates/comments/list.html
index c105279..378145e 100644
--- a/design/templates/comments/list.html
+++ b/design/templates/comments/list.html
@@ -1,14 +1,22 @@
-{% comment %}
-
- Since we support both flat comments, and threadedcomments,
- the 'fluent_comments_list' templatetag loads the proper template.
-
- It either loads:
- - fluent_comments/templatetags/flat_html.html
- - fluent_comments/templatetags/threaded_list.html
-
- Both reuse comments/comment.html eventually.
- To style comments, consider overwriting that template.
-
-{% endcomment %}
-{% load fluent_comments_tags %}{% fluent_comments_list %}
+{% load gravatar_local %}
+{% load markdown%}
+{% load bleach_tags %}
+{% load nofollow %}
+{% load comments %}
+
Unless you've previously been approved a few times, your comment will be moderated. If we're on the road this can sometimes take a few days, so please be patient.
If you enjoyed this, you should join the mailing list…
{% include 'mailing_list.html' %}
-
+
{% endcomment %}
+
+
+{% get_comment_count for object as comment_count %}.
+{%if comment_count > 0%}
+
{{comment_count}} Comments
+{% render_comment_list for object %}
+{%endif%}
+{% render_comment_form for object %}
{% endblock %}
{% block js %}
+
{% with object.template_name as t %}{%if t == 1 or t == 3 %}
{%endif%}{%endwith%}{%endblock%}
--
cgit v1.2.3
{% trans "Preview of your comment" %}
{% endif %} -- {% if comment.url %}{%if comment.url == "http://lux.me/"%}{%else%}{% endif %}{% endif %} - {% if comment.name %}{{ comment.name }}{% else %}{% trans "Anonymous" %}{% endif %}{% comment %} - {% endcomment %}{% if comment.url %}{% endif %} - {% if not comment.is_public %}({% trans "moderated" %}){% endif %} - {% if USE_THREADEDCOMMENTS and not preview %} {% endif %} -
- - -