kpsul/gestioncof/cms/views.py

6 lines
170 B
Python
Raw Permalink Normal View History

2017-08-07 23:31:27 +02:00
from django.shortcuts import render
2019-01-06 00:17:57 +01:00
2017-08-07 23:31:27 +02:00
def raw_calendar_view(request, year, month):
2019-01-06 00:25:41 +01:00
return render(request, "cofcms/calendar_raw.html", {"month": month, "year": year})