~ubuntu-branches/ubuntu/trusty/horizon/trusty-updates

« back to all changes in this revision

Viewing changes to horizon/forms/__init__.py

  • Committer: Package Import Robot
  • Author(s): Adam Gandelman
  • Date: 2013-09-06 11:59:43 UTC
  • mfrom: (1.1.30)
  • Revision ID: package-import@ubuntu.com-20130906115943-h3td0l7tp16mb9oc
Tags: 1:2013.2~b3-0ubuntu1
* New upstream release.
* debian/control: Minimum python-openstack-auth version >= 1.1.1.
* debian/control: Add python-troveclient.
* debian/static: Refresh static assets for 2013.2~b3.
* debian/patches: ubuntu_local_settings.patch -> ubuntu_settings.patch, also
  patch location of secret key in openstack_dashboard/settings.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
#    under the License.
16
16
 
17
17
# FIXME(gabriel): Legacy imports for API compatibility.
18
 
from django.forms import *
 
18
from django.forms import *  # noqa
19
19
from django.forms import widgets
20
20
 
21
21
# Convenience imports for public API components.
22
 
from horizon.forms.base import DateForm
23
 
from horizon.forms.base import SelfHandlingForm
24
 
from horizon.forms.base import SelfHandlingMixin
25
 
from horizon.forms.fields import DynamicChoiceField
26
 
from horizon.forms.fields import DynamicTypedChoiceField
27
 
from horizon.forms.views import ModalFormMixin
28
 
from horizon.forms.views import ModalFormView
 
22
from horizon.forms.base import DateForm  # noqa
 
23
from horizon.forms.base import SelfHandlingForm  # noqa
 
24
from horizon.forms.base import SelfHandlingMixin  # noqa
 
25
from horizon.forms.fields import DynamicChoiceField  # noqa
 
26
from horizon.forms.fields import DynamicTypedChoiceField  # noqa
 
27
from horizon.forms.views import ModalFormMixin  # noqa
 
28
from horizon.forms.views import ModalFormView  # noqa
29
29
 
30
30
assert widgets
31
31
assert SelfHandlingMixin