forked from DGNum/gestioCOF
6 lines
188 B
Python
6 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})
|