mirror of
https://github.com/Hopiu/django-select2.git
synced 2026-04-16 03:10:58 +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'
|