kpsul/gestioncof/cms/views.py

7 lines
233 B
Python
Raw Normal View History

2017-08-07 23:31:27 +02:00
from django.shortcuts import render
from django.http.response import HttpResponseRedirect
import re
2017-08-07 23:31:27 +02:00
def raw_calendar_view(request, year, month):
return render(request, "cofcms/calendar_raw.html", {"month": month, "year": year})