8 lines
206 B
Python
8 lines
206 B
Python
from project.main.views.demo_view_base import DemoViewBase
|
|
|
|
|
|
class ComplexFormView(DemoViewBase):
|
|
template_name = "main/complex_form.html"
|
|
active_section = "complex-form"
|
|
title = "Complex Form"
|