bornhack-website/src/people/views.py
Thomas Steen Rasmussen 533c1b3efa add initial people stuff
2017-07-11 22:50:31 +02:00

10 lines
190 B
Python

from django.shortcuts import render
from django.views.generic import ListView
from camps.models import Camp
class PeopleView(ListView):
template_name = 'people.html'
model = Camp