{% extends "base.html" %} {% load cycle from future %} {% load static from staticfiles %} {% block title %}Arch Linux - Todo Lists{% endblock %} {% block content %}

Package Todo Lists

{% if perms.todolists.add_todolist %}{% endif %}

Todo lists are used by the developers when a rebuild of a set of packages is needed. This is common when a library has a version bump, during a toolchain rebuild, or a general cleanup of packages in the repositories. The progress can be tracked here, and completed todo lists can be browsed as well.

{% include "todolists/paginator.html" %} {% for list in lists %} {% endfor %}
Name Creation Date Creator Description Package Count Incomplete Count Status
{{ list.name }} {{ list.created|date }} {{ list.creator.get_full_name }} {{ list.description|urlize }} {{ list.pkg_count }} {{ list.incomplete_count }} {% ifequal list.incomplete_count 0 %}Complete {% else %}Incomplete{% endifequal %}
{% include "todolists/paginator.html" %}
{% endblock %} {% block script_block %} {% load cdn %}{% jquery %}{% jquery_tablesorter %} {% endblock %}