{% extends "site_base.html" %} {% load i18n %} {% block head_title %}{% trans "Welcome" %}{% endblock %} {% block body_class %}home{% endblock %} {% block topbar_base %}{% endblock %} {% block body %}

Tasks

A sample tasks app to demonstrate how to use eldarion-ajax

There have been {{ total_count }} tasks added by everyone.

{% csrf_token %}
{% include "_complete_count.html" %}
{% for task in tasks %} {% include "_task.html" %} {% endfor %}
{% endblock %} {% block extra_body %} {% endblock %}