5 lines
130 B
Python
5 lines
130 B
Python
from django.shortcuts import render
|
|
|
|
def index(request , *args, **kwargs):
|
|
return render(request, 'infoscreen_index.html',{})
|