Files
Django-Inventory-App/worldtour/asiatoursagency/views.py

9 lines
226 B
Python

from django.shortcuts import render
from .models import Tour
# Create your views here.
def index(request):
tours = Tour.objects.all()
context = {'tours': tours}
return render(request, 'tours/index.html', context)