mirror of
https://github.com/rjNemo/villafleurie
synced 2026-06-12 13:26:47 +00:00
17 lines
338 B
Python
17 lines
338 B
Python
from django.views.generic.base import TemplateView
|
|
|
|
|
|
class Legal(TemplateView):
|
|
template_name = 'rental/legal.html'
|
|
|
|
|
|
class About(TemplateView):
|
|
template_name = 'rental/about.html'
|
|
|
|
|
|
class Partners(TemplateView):
|
|
template_name = 'rental/partners.html'
|
|
|
|
|
|
class Services(TemplateView):
|
|
template_name = 'rental/service.html'
|