{% extends "base.html" %} {% load i18n %} {% block header %}{{ block.super }}Homepage{% endblock %} {% block content %}

{% trans "This demo site using django-comments-xtd, features" %}:

  1. {% trans "An Articles App, with a model Article whose instances accept comments." %}
  2. {% trans "COMMENTS_XTD_MAX_THREAD_LEVEL is set to 2, so comments can be nested up to a 2nd level:" %}
    	First comment (level 0)
              |-- Comment to "First comment" (level 1)
        	    |-- Comment to "Comment to First comment" (level 2)
          
  3. {% trans "Comments have to be confirmed by email (unless COMMENTS_XTD_CONFIRM_EMAIL is set to False)." %}
  4. {% blocktrans %}It uses the template tag render_markup_comment to render comments content. So you can use line breaks, markdown or reStructuredText to format comments{% endblocktrans %}. To use special formatting, start the comment with the line: #!<markup-lang> being <markup-lang> any of the following:

{% trans "Article list" %}

django-comments-xtd

{% endblock %}