Files
RRBEC/gestaoRaul/mesas/views.py

9 lines
204 B
Python

from django.shortcuts import render
from mesas.models import Mesa
# Create your views here.
def mesas(request):
mesas = Mesa.objects.all()
return render(request, 'mesas.html', {'mesas': mesas})