{% load cms_tags i18n static %} Django check SEO

Django Check SEO

  • {% trans "Keywords:" %}
  • {% if keywords|length > 0 %} {{ keywords|unordered_list }} {% else %}
  • {% trans "no keywords!" %}
  • {% endif %}

{% autoescape off %}{{ nb_problems_warnings }}{% endautoescape %}

{% trans "on the public page" %}

    {% for problem in problems %} {% include "element.html" with element=problem %} {% endfor %}
    {% for warning in warnings %} {% include "element.html" with element=warning %} {% endfor %}
{% if success|length > 0 %}

    {%trans "Successful checks" %}

    {% for successful_check in success %} {% include "element.html" with element=successful_check %} {% endfor %}
{% endif %}