diff options
author | Dusty Phillips <buchuki@gmail.com> | 2008-10-10 17:28:05 -0400 |
---|---|---|
committer | Dusty Phillips <buchuki@gmail.com> | 2008-10-10 17:28:05 -0400 |
commit | d97d3a447c328e98df6d3b51d61a979d12cdad46 (patch) | |
tree | 60e992f14b5341425f6f79455c4fe9e9ec6887b6 /templates/packages/search.html | |
parent | edc9dfb7a49c91f7db3c4a3a568e218dffae70cf (diff) |
drop search/ url and just go to packages
Diffstat (limited to 'templates/packages/search.html')
-rw-r--r-- | templates/packages/search.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/templates/packages/search.html b/templates/packages/search.html index 75bc906b..af3fd9a0 100644 --- a/templates/packages/search.html +++ b/templates/packages/search.html @@ -10,7 +10,7 @@ {% block content %} <div class="greybox"> <h4 style="text-align: right">Search Criteria</h4> - <form method="get" action="/packages/search/"> + <form method="get" action="/packages/"> <table width="100%"> <tr> <td><span class="smalltext">Arch</span></td> @@ -42,13 +42,13 @@ <tr> <form method="post" action="/packages/update/"> <th> </th> - <th><a href="/packages/search/{% buildsortqs "arch" %}">Arch</a></th> - <th><a href="/packages/search/{% buildsortqs "repo" %}">Repo</a></th> - <th><a href="/packages/search/{% buildsortqs "pkgname" %}">Name</a></th> + <th><a href="/packages/{% buildsortqs "arch" %}">Arch</a></th> + <th><a href="/packages/{% buildsortqs "repo" %}">Repo</a></th> + <th><a href="/packages/{% buildsortqs "pkgname" %}">Name</a></th> <th>Version</th> <th>Description</th> - <th><a href="/packages/search/{% buildsortqs "maintainer" %}">Maintainer</a></th> - <th><a href="/packages/search/{% buildsortqs "-last_update" %}">Last Updated</a></th> + <th><a href="/packages/{% buildsortqs "maintainer" %}">Maintainer</a></th> + <th><a href="/packages/{% buildsortqs "-last_update" %}">Last Updated</a></th> </tr> {% for pkg in package_list %} @@ -75,7 +75,7 @@ </td> <td> {% if page_obj.has_previous %} - <a href="/packages/search/{{page_obj.previous_page_number}}/{{current_query}}"> + <a href="/packages/{{page_obj.previous_page_number}}/{{current_query}}"> <<< Previous </a> {% else %} @@ -84,7 +84,7 @@ </td> <td> {% if page_obj.has_next %} - <a href="/packages/search/{{page_obj.next_page_number}}/{{current_query}}"> + <a href="/packages/{{page_obj.next_page_number}}/{{current_query}}"> Next >>> </a> {% else %} |