8 lines
206 B
Python
8 lines
206 B
Python
from project.main.views.demo_view_base import DemoViewBase
|
|
|
|
|
|
class SwapContentView(DemoViewBase):
|
|
template_name = "main/swap_content.html"
|
|
active_section = "swap-content"
|
|
title = "Swap Content"
|