kpsul/gestioncof/cms/views.py
2018-03-21 21:53:48 +01:00

7 lines
233 B
Python

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