From f5132e24bd110fedd6072f514dc04f70268baeb0 Mon Sep 17 00:00:00 2001 From: Herculino Trotta Date: Sun, 5 Jan 2025 01:36:30 -0300 Subject: [PATCH] feat(tags): add tab to show archived tags --- app/apps/transactions/views/tags.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/apps/transactions/views/tags.py b/app/apps/transactions/views/tags.py index 354208b..fdc66da 100644 --- a/app/apps/transactions/views/tags.py +++ b/app/apps/transactions/views/tags.py @@ -24,11 +24,9 @@ def tags_index(request): @login_required @require_http_methods(["GET"]) def tags_list(request): - tags = TransactionTag.objects.all().order_by("id") return render( request, "tags/fragments/list.html", - {"tags": tags}, )