mirror of
https://github.com/django-components/django-components.git
synced 2025-07-10 02:35:00 +00:00
13 lines
230 B
Python
13 lines
230 B
Python
from datetime import datetime
|
|
|
|
from django.shortcuts import render
|
|
|
|
|
|
def calendar(request):
|
|
return render(
|
|
request,
|
|
"calendarapp/calendar.html",
|
|
{
|
|
"date": datetime.today(),
|
|
},
|
|
)
|