7 lines
144 B
Python
7 lines
144 B
Python
|
from django.shortcuts import render
|
||
|
|
||
|
# Create your views here.
|
||
|
def contacto(request):
|
||
|
return render(request, "contacto/contacto.html")
|
||
|
|