hiroaki-yamamoto/djextra

View on GitHub
djextra/forms/angular1/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""AngularJS (aka Angular1, Angular Legacy) forms."""

from .forms import AngularForm
from .widgets import (
    MDSelect, MDMultiSelect, MDDatePicker, MDDateSelect, MDCheckBox
)


__all__ = (
    "AngularForm", "MDSelect", "MDMultiSelect",
    "MDDatePicker", "MDDateSelect", "MDCheckBox"
)