feat(tags): add tab to show archived tags

This commit is contained in:
Herculino Trotta
2025-01-05 01:36:30 -03:00
parent 41303f39a0
commit f5132e24bd

View File

@@ -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},
)