9 lines
245 B
Python
9 lines
245 B
Python
from django.shortcuts import render
|
|
from servicios.models import Servicio
|
|
|
|
# Create your views here.
|
|
def servicios(request):
|
|
servicios = Servicio.objects.all()
|
|
return render(request, "servicios/servicios.html", {"servicios":servicios})
|
|
|