django-markdownx/testapp/views.py
adi 67b1769ebd [Updates #67]
* cleanup current app
* add bootstrap framework
2017-05-11 23:51:29 +02:00

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