From dbbae9703859858d746494043ab0637f380ffcc5 Mon Sep 17 00:00:00 2001 From: Kevin Morris Date: Tue, 18 Jan 2022 08:21:09 -0800 Subject: [PATCH] housekeep: move templates/packages/widgets/* to templates/packages/ Signed-off-by: Kevin Morris --- templates/index.html | 6 +++--- .../packages/{widgets/search.html => search_widget.html} | 0 templates/partials/packages/{widgets => }/statistics.html | 0 templates/partials/packages/{widgets => }/updates.html | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename templates/partials/packages/{widgets/search.html => search_widget.html} (100%) rename templates/partials/packages/{widgets => }/statistics.html (100%) rename templates/partials/packages/{widgets => }/updates.html (100%) diff --git a/templates/index.html b/templates/index.html index 0b6eda50..8b7ad7c2 100644 --- a/templates/index.html +++ b/templates/index.html @@ -11,9 +11,9 @@
- {% include 'partials/packages/widgets/search.html' %} - {% include 'partials/packages/widgets/updates.html' %} - {% include 'partials/packages/widgets/statistics.html' %} + {% include 'partials/packages/search_widget.html' %} + {% include 'partials/packages/updates.html' %} + {% include 'partials/packages/statistics.html' %}
{% endblock %} diff --git a/templates/partials/packages/widgets/search.html b/templates/partials/packages/search_widget.html similarity index 100% rename from templates/partials/packages/widgets/search.html rename to templates/partials/packages/search_widget.html diff --git a/templates/partials/packages/widgets/statistics.html b/templates/partials/packages/statistics.html similarity index 100% rename from templates/partials/packages/widgets/statistics.html rename to templates/partials/packages/statistics.html diff --git a/templates/partials/packages/widgets/updates.html b/templates/partials/packages/updates.html similarity index 100% rename from templates/partials/packages/widgets/updates.html rename to templates/partials/packages/updates.html