3f013f297fb4b119045681576397279949dcf2cd
[climbing.kerkeslager.com] / src / climbing / views.py
1 from django.views.generic.list import ListView
2
3 from . import models
4
5 class AreaListView(ListView):
6     model = models.Area
7
8 index = AreaListView.as_view()