{% extends "tb_base.html" %} {% load static %} {% load i18n %} {% block content %}
{% for art in articles %} {% if forloop.counter0 < 3 %}
{{ art.name }}
{{ art.description|truncatechars:100 }}
{% endif %} {#
{{ art.text|safe }}
#} {% endfor %}
{% for art in articles %} {% if forloop.counter0 > 2 %}
{{ art.name }}
{{ art.description|truncatechars:400 }} {#
#}
{% endif %} {#
{{ art.text|safe }}
#} {% endfor %}
{% if last_block == False %}
{% endif %} {% endblock %}