kpsul/gestioncof/cms/views.py
2019-01-06 00:17:57 +01:00

7 lines
188 B
Python

from django.shortcuts import render
def raw_calendar_view(request, year, month):
return render(request, "cofcms/calendar_raw.html",
{"month": month, "year": year})