summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2013-03-11 18:23:59 -0500
committerDan McGee <dan@archlinux.org>2013-03-11 18:24:56 -0500
commit00b9084303ccb27f7937a9392d2a582d25a04288 (patch)
treecd568f430e76c6b78ac8daee225ceedb32ca7962 /templates
parentf579f88e174abfd0514788879fd190035b6bbf87 (diff)
downloadarchweb-00b9084303ccb27f7937a9392d2a582d25a04288.tar.gz
archweb-00b9084303ccb27f7937a9392d2a582d25a04288.zip
Remove public todolists view
Replace this with a redirect to the developer todolist index page. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates')
-rw-r--r--templates/todolists/public_list.html69
1 files changed, 0 insertions, 69 deletions
diff --git a/templates/todolists/public_list.html b/templates/todolists/public_list.html
deleted file mode 100644
index da99bc01..00000000
--- a/templates/todolists/public_list.html
+++ /dev/null
@@ -1,69 +0,0 @@
-{% extends "base.html" %}
-{% load static from staticfiles %}
-{% load todolists %}
-
-{% block title %}Arch Linux - Todo Lists{% endblock %}
-
-{% block content %}
-<div class="box">
- <h2>Developer Todo Lists</h2>
- <div id="public_todo_lists_toc">
- <h3>Open Developer Todo Lists</h3>
- <p>Todo lists are used by the developers when a rebuild of a set of
- packages is needed. This is common when a library has an .so version
- bump; during a toolchain rebuild, or a general cleanup of packages in
- the repositories. The progress can be tracked here. Only todo lists
- with currently incomplete packages are shown.</p>
- {% if todo_lists %}<ul>
- {% for list in todo_lists %}
- <li><a href="#{{ list.id }}">{{ list.name }}</a></li>
- {% endfor %}
- </ul>{% else %}
- <p>There are currently no incomplete developer todo lists.</p>
- {% endif %}
- </div>
-</div>
-{% if todo_lists %}
-<div id="public-todo-lists">
- {% for list in todo_lists %}
- <div class="box">
- <div class="todo-list">
- <a name="{{ list.id }}"></a>
- <h4>{{ list.name }}</h4>
- <p class="todo-info">{{ list.created|date }} - {{ list.creator.get_full_name }}</p>
- <div>{{ list.description|urlize|linebreaks }}</div>
- <table id="todo-pkglist-{{ list.id }}" class="results todo-table">
- <thead>
- <tr>
- <th>Name</th>
- <th>Arch</th>
- <th>Repo</th>
- <th>Maintainer</th>
- <th>Status</th>
- </tr>
- </thead>
- <tbody>
- {% for pkg in list.packages %}
- <tr class="{% cycle 'odd' 'even' %}">
- <td>{% todopkg_details_link pkg %}</td>
- <td>{{ pkg.arch.name }}</td>
- <td>{{ pkg.repo.name|capfirst }}</td>
- <td>{{ pkg.maintainers|join:', ' }}</td>
- <td><span class="{{ pkg.status_css_class }}">{{ pkg.get_status_display }}</span></td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
- </div>
- </div>
- {% endfor %}
-</div>
-{% endif %}
-{% load cdn %}{% jquery %}{% jquery_tablesorter %}
-<script type="text/javascript" src="{% static "archweb.js" %}"></script>
-<script type="text/javascript">
-$(document).ready(function() {
- $(".results").tablesorter({widgets: ['zebra'], sortList: [[0,0], [1,0]]});
-});
-</script>
-{% endblock %}