mirror of
https://github.com/Hopiu/django-markdownx.git
synced 2026-03-16 21:40:24 +00:00
9 lines
233 B
Python
9 lines
233 B
Python
from django.views.generic.base import TemplateView
|
|
from django.views.generic.edit import FormView, CreateView
|
|
|
|
from testapp.forms import MyForm
|
|
|
|
|
|
class TestFormView(FormView):
|
|
template_name = "index.html"
|
|
form_class = MyForm
|