Formatting fix, removed unnecessary code

This commit is contained in:
Buslig Gábor
2026-02-03 20:57:43 +01:00
parent cb382ed3d3
commit 919821ac83
2 changed files with 5 additions and 2 deletions

View File

@@ -50,7 +50,11 @@ COLORS = {
"background": "bg-cyan-400",
"hex": "#06b6d4",
},
"lime": {"text": "text-lime-400", "background": "bg-lime-400", "hex": "#84cc16"},
"lime": {
"text": "text-lime-400",
"background": "bg-lime-400",
"hex": "#84cc16",
},
"sky": {
"text": "text-sky-400",
"background": "bg-sky-400",

View File

@@ -45,7 +45,6 @@ def home(request):
if request.headers.get("HX-Request") and media_type_to_load:
context = {
"media_list": list_by_type.get(media_type_to_load, []),
"user": request.user,
}
return render(request, "app/components/home_grid.html", context)