summaryrefslogtreecommitdiffstats
path: root/templates/packages
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-09-08 07:11:05 +0200
committerDan McGee <dan@archlinux.org>2010-09-08 07:11:05 +0200
commit16198ad23bdb68e91823a176a9e166cfecd83189 (patch)
tree4ae50d36217e1da788eaa605dabff880b41663e0 /templates/packages
parent9df541f95f12d2fad5c9911008882b7ff35a9514 (diff)
downloadarchweb-16198ad23bdb68e91823a176a9e166cfecd83189.tar.gz
archweb-16198ad23bdb68e91823a176a9e166cfecd83189.tar.xz
Add 'for' attributes to search form labels
And also add the new style class we will need so the search form retains the prior look, now that we are using this style elsewhere. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/packages')
-rw-r--r--templates/packages/search.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/templates/packages/search.html b/templates/packages/search.html
index fdc6895..e11e909 100644
--- a/templates/packages/search.html
+++ b/templates/packages/search.html
@@ -8,7 +8,7 @@
{% endblock %}
{% block content %}
-<div id="pkglist-search" class="box">
+<div id="pkglist-search" class="box filter-criteria">
<h2>Package Database</h2>
@@ -18,19 +18,19 @@
<p><input type="hidden" name="sort" value='{{sort}}' /></p>
<fieldset>
<legend>Enter search criteria</legend>
- <div><label title="Limit results a specific CPU architecture">
+ <div><label for="id_arch" title="Limit results a specific CPU architecture">
Arch</label>{{ search_form.arch }}</div>
- <div><label title="Limit results to a specific respository">
+ <div><label for="id_repo" title="Limit results to a specific respository">
Repository</label>{{ search_form.repo }}</div>
- <div><label title="Enter keywords as desired">
+ <div><label for="id_q" title="Enter keywords as desired">
Keywords</label>{{ search_form.q }}</div>
- <div><label title="Limit results to a specific maintainer">
+ <div><label for="id_maintainer" title="Limit results to a specific maintainer">
Maintainer</label>{{ search_form.maintainer}}</div>
- <div><label title="Limit results to a date after the date entered">
+ <div><label for="id_last_update" title="Limit results to a date after the date entered">
Last Updated After</label>{{ search_form.last_update }}</div>
- <div><label title="Limit results based on out-of-date status">
+ <div><label for="id_flagged" title="Limit results based on out-of-date status">
Flagged</label>{{ search_form.flagged }}</div>
- <div><label title="Select the number of results to display per page">
+ <div><label for="id_limit" title="Select the number of results to display per page">
Per Page</label>{{ search_form.limit }}</div>
<div ><label>&nbsp;</label><input title="Search for packages using this criteria"
type="submit" value="Search" /></div>