views.py 324 B

12345678910
  1. from django.shortcuts import render
  2. from django.views.generic import View
  3. from gauth.models import Location, LocationManager
  4. class LocationListView(View):
  5. def get(self, request, *args, **kwargs):
  6. locations = Location.objects.all()
  7. return render(request, 'locations.html', {'all_locations': locations})