{% extends "base.html" %} {% load cycle from future %} {% load static from staticfiles %} {% load package_extras %} {% load todolists %} {% block title %}Arch Linux - Todo: {{ list.name }}{% endblock %} {% block content %}

Todo List: {{ list.name }}

{{ list.created|date }} - {{ list.creator.get_full_name }}

{{list.description|urlize|linebreaks}}

Link to lists of pkgbase values:

{{ list.packages|length }} total todo list package{{ list.packages|pluralize }} found.

Filter Todo List Packages

Select filter criteria {% for arch in arches %}
{% endfor %} {% for repo in repos %}
{% endfor %} {% if user.is_authenticated %}
{% endif %}
{{ list.packages|length }} todo list packages displayed.
{% for pkg in list.packages %} {% if pkg.pkg.flag_date %} {% elif pkg.pkg %} {% else %} {% endif %} {% with staging=pkg.staging %} {% endwith %} {% endfor %}
Arch Repository Name Current Version Staging Version Maintainers Status Last Touched By
{{ pkg.arch.name }} {{ pkg.repo.name|capfirst }} {% todopkg_details_link pkg %}{{ pkg.pkg.full_version }}{{ pkg.pkg.full_version }}{% if staging %}{% pkg_details_link staging staging.full_version %}{% endif %}{{ pkg.maintainers|join:', ' }} {% if perms.todolists.change_todolistpackage %} {{ pkg.get_status_display }} {% else %} {{ pkg.get_status_display }} {% endif %} {{ pkg.user|default:"" }}
{% endblock %} {% block script_block %} {% load cdn %}{% jquery %}{% jquery_tablesorter %} {% endblock %}