summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-08-27 16:11:56 -0500
committerDan McGee <dan@archlinux.org>2010-08-27 17:05:07 -0500
commite0674de7767a7b2bf9f83f20b2361200e4d8efe0 (patch)
tree6ae67bec8cb296cf1532f43100efab5a63bcc8bd /templates
parent1cfcf13e1b66950a96d8a729f34108030c48c1cb (diff)
downloadarchweb-e0674de7767a7b2bf9f83f20b2361200e4d8efe0.tar.gz
archweb-e0674de7767a7b2bf9f83f20b2361200e4d8efe0.zip
Add a group details view
This makes the support asked for in FS#19801 a lot more useful since we actually have an overview page for the entire group. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates')
-rw-r--r--templates/packages/group_details.html45
1 files changed, 45 insertions, 0 deletions
diff --git a/templates/packages/group_details.html b/templates/packages/group_details.html
new file mode 100644
index 00000000..f15efaac
--- /dev/null
+++ b/templates/packages/group_details.html
@@ -0,0 +1,45 @@
+{% extends "base.html" %}
+{% block title %}Arch Linux - {{ groupname }} - Group Details{% endblock %}
+{% block navbarclass %}anb-packages{% endblock %}
+
+{% block content %}
+<div class="box">
+ <h2>Details for group {{ groupname }} - {{ arch.name }}</h2>
+ <table class="results">
+ <thead>
+ <tr>
+ <th>Arch</th>
+ <th>Repo</th>
+ <th>Name</th>
+ <th>Version</th>
+ <th>Description</th>
+ <th>Last Updated</th>
+ </tr>
+ </thead>
+ <tbody>
+ {% for pkg in packages %}
+ <tr class="{% cycle 'odd' 'even' %}">
+ <td>{{ pkg.arch.name }}</td>
+ <td>{{ pkg.repo.name|capfirst }}</td>
+ <td><a href="{{ pkg.get_absolute_url }}"
+ title="Package details for {{ pkg.pkgname }}">{{ pkg.pkgname }}</a></td>
+ {% if pkg.flag_date %}
+ <td><span class="flagged">{{ pkg.pkgver }}-{{ pkg.pkgrel }}</span></td>
+ {% else %}
+ <td>{{ pkg.pkgver }}-{{ pkg.pkgrel }}</td>
+ {% endif %}
+ <td class="wrap">{{ pkg.pkgdesc }}</td>
+ <td>{{ pkg.last_update|date:"Y-m-d" }}</td>
+ </tr>
+ {% endfor %}
+ </tbody>
+ </table>
+</div>
+{% load cdn %}{% jquery %}
+<script type="text/javascript" src="/media/jquery.tablesorter.min.js"></script>
+<script type="text/javascript">
+$(document).ready(function() {
+ $(".results").tablesorter({widgets: ['zebra'], sortList: [[2,0]]});
+});
+</script>
+{% endblock %}