mirror of
https://github.com/Hopiu/django-select2.git
synced 2026-04-15 02:40:59 +00:00
8 lines
175 B
Python
8 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'
|