mirror of
https://github.com/Hopiu/django-select2.git
synced 2026-05-05 20:24:42 +00:00
9 lines
175 B
Python
9 lines
175 B
Python
|
|
# -*- coding: utf-8 -*-
|
||
|
|
from __future__ import unicode_literals
|
||
|
|
|
||
|
|
from django.views.generic import FormView
|
||
|
|
|
||
|
|
|
||
|
|
class TemplateFormView(FormView):
|
||
|
|
template_name = 'form.html'
|