{% extends "base.html" %} {% load static %} {% 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 Package Count Incomplete Count Kind Status
{{ list.name }} {{ list.created|date:"Y-m-d" }} {{ list.creator.get_full_name }} {{ list.pkg_count }} {{ list.incomplete_count }} {{ list.kind_str }} {% if list.incomplete_count == 0 %}Complete {% else %}Incomplete{% endif %}
{% include "todolists/paginator.html" %}
{% endblock %} {% block script_block %} {% load cdn %}{% jquery %}{% jquery_tablesorter %} {% endblock %}