{% extends 'base.html' %} {% load static %} {% load i18n %} {% block title %}{{ pagetitle }}{% endblock %} {% block content %}

{% trans pagetitle %}

{% if docu_legal %}

Rules

{% for object in docu_legal %}

{{ object }}

{{ object.subtitle }}

{{ object.description }}

{#

#}
{% endfor %} {% endif %} {% if docu_best_practices %}

Best Practices

{% for object in docu_best_practices %}

{{ object }}

{{ object.subtitle }}

{{ object.description }}

{#

#}
{% endfor %} {% endif %} {% if docu_general %}

General Documentation

{% for object in docu_general %}

{{ object }}

{{ object.subtitle }}

{{ object.description }}

{#

#}
{% endfor %} {% endif %}
{% endblock %}