{% load i18n %} {% load cbc %} {% extends "pages/body.html" %} {% block title %}{{ page.title }}{% endblock %} {% block description %}{{ page.description }}{% endblock %} {% block header %}{{ page.title }}{% endblock %} {% block crumb %}

Link 1

Link 2

{% endblock %} {% block content %}

{{ page.description }}

{{ page.text|cbc }}

{% trans "Categories" %}

Cat 1 (edit show_index.html)

Cat 2

{% trans "Latest News" %}

{% for i in inews %}
{% if forloop.first %} {% endif %}{% if i.is_external %} {% endif %}{% if forloop.first %}{{ i.title }}{% else %}{{ i.title }}{% endif %}{% if forloop.first %}
{{ i.text|cbc }} {% if i.is_more %}{% trans "Read More" %}{% endif %}
{% endif %}
{% endfor %}

{% trans "Lastest Articles" %}

{% for j in pages %}
{{ j.title }}
{% endfor %} {% if itopics %}

{% trans "Latest Topics" %}

{% for t in itopics %}
{{ t.topic_name }} ({{ t.last }})
{% endfor %}{% endif %} {% if tasks %}

{% trans "Latests Tasks" %}

{% for t in tasks %}
{{ t.name }}
{% endfor %}{% endif %} {% if com %}

{% trans "Latests Comments" %}

{% for t in com %}
{% ifequal t.apptype 3 %}[{% trans "Task" %}]{% endifequal %}{% ifequal t.apptype 1 %}[{% trans "Page" %}] {% endifequal %}{% ifequal t.apptype 2 %}[{% trans "News" %}] {% endifequal %}{% ifequal t.apptype 4 %}[{% trans "Translation" %}] {% endifequal %}{% ifequal t.apptype 5 %}[{% trans "Character" %}] {% endifequal %}{{ t }}
{% endfor %}{% endif %} {% if characters %}

{% trans "Latest Characters" %}

{% for t in characters %}
{{ t.name }} ({{ t.main_class }})
{% endfor %} {% endif %} {% if tra %}

{% trans "Latest Translations" %}

{% for t in tra %}
{{ t.name }}
{% endfor %} {% endif %}

{% trans "Users online" %}

{% for t in onsite %}
{{ t.username }}
{% endfor %}
{% endblock %} {% block meta %}{% if com %} {% endif %}{% endblock %}