{% extends "base.html" %} {% block content %} {% for post in posts %} {% endfor %}
{{ include(template_from_string(lang.title)) }} {{ include(template_from_string(lang.state)) }} {{ include(template_from_string(lang.author)) }} {{ include(template_from_string(lang.date)) }} {{ include(template_from_string(lang.action)) }}
{{loop.index}} {{post.title}} {% if post.active is sameas("true") %} {{ include(template_from_string(lang.activate)) }}/{{ include(template_from_string(lang.deactivate)) }} {% else %} {{ include(template_from_string(lang.activate)) }}/{{ include(template_from_string(lang.deactivate)) }} {% endif %} {{post.author}} {{post.date}} {{ include(template_from_string(lang.edit)) }} | {{ include(template_from_string(lang.delete)) }}
{% endblock %}