From 39a548fd2629f3b6383990264b2e331b3aea99fb Mon Sep 17 00:00:00 2001 From: eliott Date: Sat, 3 Nov 2007 03:45:10 -0400 Subject: Initial import for public release... Special Note Prior to git import, approx 90% of the code was done by Judd Vinet. Thanks Judd! --- templates/packages/search.html | 120 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 templates/packages/search.html (limited to 'templates/packages/search.html') diff --git a/templates/packages/search.html b/templates/packages/search.html new file mode 100644 index 00000000..030289d4 --- /dev/null +++ b/templates/packages/search.html @@ -0,0 +1,120 @@ +{% load validation %} +{% load package_extras %} +{% extends "base.html" %} + +{% block head %} + + +{% endblock %} + +{% block content %} +
+

Search Criteria

+ {% if errors %} + {% print_errors errors %} + {% endif %} +
+
+ + + + + + + + + + +
RepositoryCategoryKeywordsLast UpdatePer Page
+ + + + + + + + + + + + +
+
+
+

+ + {% if results %} +
+ + + {% if not user.is_anonymous %} + + + {% endif %} + + + + + + + + {% for pkg in results %} + + {% if not user.is_anonymous %} + + {% endif %} + + + + {% if pkg.needupdate %} + + {% else %} + + {% endif %} + + + + {% endfor %} + + + + + + {% if not user.is_anonymous %} + + + + + + + + {% endif %} +
 RepoCategoryNameVersionDescriptionLast Updated
{{ pkg.repo.name }}{{ pkg.category.category }}{{ pkg.pkgname }}{{ pkg.pkgver }}-{{ pkg.pkgrel }}{{ pkg.pkgver }}-{{ pkg.pkgrel }}{{ pkg.pkgdesc }}{{ pkg.last_update|date:"Y-m-d" }}
{% if prevpage %}
<<< Prev{% endif %}
 {% if nextpage %}
Next >>>{% endif %}
  
+
+ {% endif %} +{% endblock %} + -- cgit v1.2.3-54-g00ecf