bornhack-website/src/people/views.py
2018-03-04 14:39:01 +01:00

9 lines
154 B
Python

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