9 lines
119 B
Python
9 lines
119 B
Python
|
from django.shortcuts import render
|
||
|
|
||
|
def home(request):
|
||
|
|
||
|
|
||
|
return render(request, 'rugwebsite/home.html', {
|
||
|
|
||
|
})
|