mirror of
https://github.com/Hopiu/django-markdownx.git
synced 2026-03-17 05:50:23 +00:00
8 lines
197 B
Python
8 lines
197 B
Python
from django.views.generic.edit import CreateView
|
|
|
|
from .models import MyModel
|
|
|
|
class TestView(CreateView):
|
|
template_name = "test_view.html"
|
|
model = MyModel
|
|
fields = ['markdownx_field']
|