{% extends "cosinnus_todo/base.html" %} {% load i18n static cosinnus_tags widget_tweaks %} {% block page_title %}{% trans "Todos" %}: {{group.name}} {% endblock %} {% block breadcrumb %} {{ block.super }}
  • {% trans "Todos" %}
  • {{ active_todolist.title }}
  • {{ object.title }}
  • {% endblock %} {% block leftnav %} {% include 'cosinnus_todo/leftnav_todoentry.html' with active_todolist=active_todolist %} {% endblock leftnav %} {% block content %} {% if object.is_completed %}

    {% trans "This todo was completed:" %} {% trans "by" %}  {% include 'cosinnus/user/user_label.html' with user=object.completed_by %}

    {% endif %}
    {% include 'cosinnus_todo/single_todo_detailed.html' with object=object %}
    {% endblock %} {% block extrafooter %} {{ block.super }} {% endblock extrafooter %}