mirror of
https://github.com/boostorg/website-v2.git
synced 2026-02-27 17:42:08 +00:00
10 lines
184 B
Python
10 lines
184 B
Python
from django.views.generic import TemplateView
|
|
|
|
|
|
class SupportView(TemplateView):
|
|
"""
|
|
Generic base view for the support view
|
|
"""
|
|
|
|
template_name = "support/support.html"
|