[templates] Have some fun with CSS
This commit is contained in:
@ -4,6 +4,26 @@ from django.utils import timezone
|
||||
from scrobbles.constants import EXCLUDE_FROM_NOW_PLAYING
|
||||
from scrobbles.models import Scrobble
|
||||
|
||||
MONTH_COLORS = [
|
||||
"#db7a7a", # Jan
|
||||
"#db847a", # Feb
|
||||
"#b0db7a", # Mar
|
||||
"#7adb82", # Apr
|
||||
"#7adbb3", # May
|
||||
"#7ab6db", # Jun
|
||||
"#7a8edb", # Jul
|
||||
"#977adb", # Aug
|
||||
"#c47adb", # Sep
|
||||
"#db7ac5", # Oct
|
||||
"#db7a90", # Nov
|
||||
"#db7a7a", # Dec
|
||||
]
|
||||
|
||||
|
||||
def month_color(request):
|
||||
from datetime import date
|
||||
return {"month_color": MONTH_COLORS[(date.today().month - 1) % 12]}
|
||||
|
||||
|
||||
def now_playing(request):
|
||||
user = request.user
|
||||
|
||||
Reference in New Issue
Block a user