housekeep: move templates/partials/widgets/* to templates/partials/

Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
Kevin Morris 2022-01-18 08:24:46 -08:00
parent dbbae97038
commit 2feb9b90b2
No known key found for this signature in database
GPG key ID: F7E46DED420788F3
6 changed files with 7 additions and 7 deletions

View file

@ -67,7 +67,7 @@
singular = "%d package found.",
plural = "%d packages found.",
prefix = "/packages" %}
{% include "partials/widgets/pager.html" %}
{% include "partials/pager.html" %}
{% endwith %}
{# Package action form: persists query parameters. #}
@ -84,7 +84,7 @@
singular = "%d package found.",
plural = "%d packages found.",
prefix = "/packages" %}
{% include "partials/widgets/pager.html" %}
{% include "partials/pager.html" %}
{% endwith %}
{% if request.user.is_authenticated() %}

View file

@ -51,5 +51,5 @@
{% if request.user.is_authenticated() %}
<!-- Include "My Statistics" -->
{% include 'partials/widgets/statistics.html' %}
{% include 'partials/statistics.html' %}
{% endif %}

View file

@ -8,7 +8,7 @@
{% if not total %}
<p>{{ "No requests matched your search criteria." | tr }}</p>
{% else %}
{% include "partials/widgets/pager.html" %}
{% include "partials/pager.html" %}
<table class="results">
<thead>
<tr>
@ -121,7 +121,7 @@
{% endfor %}
</tbody>
</table>
{% include "partials/widgets/pager.html" %}
{% include "partials/pager.html" %}
{% endif %}
</div>
{% endblock %}