5 lines
130 B
Python
5 lines
130 B
Python
|
from django.shortcuts import render
|
||
|
|
||
|
def monitor_statistics(request):
|
||
|
return render(request, 'polls/monitor_statistics.html')
|