mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 13:35:42 +00:00
9 lines
204 B
Python
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}) |