use upper case titles

This commit is contained in:
j 2018-02-21 21:02:28 +05:30
parent 8645e9b508
commit fe13a100e0

View File

@ -15,6 +15,6 @@ def available_content():
if Content.objects.filter(type__name=type, published=True).exists(): if Content.objects.filter(type__name=type, published=True).exists():
sections.append([ sections.append([
reverse(type), reverse(type),
type.capitalize() type.upper()
]) ])
return sections return sections