kpsul/gestioncof/cms/views.py

7 lines
188 B
Python
Raw 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:17:57 +01:00
return render(request, "cofcms/calendar_raw.html",
{"month": month, "year": year})