hiroaki-yamamoto/django-nghelp

View on GitHub
django_nghelp/widgets/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
#!/usr/bin/env python
# coding=utf-8

"""Widgets for AngularJS (and Angular Material)."""

from .mdselect import MDSelect
from .mdmultiselect import MDMultiSelect
from .md_datepicker import MDDatePicker
from .md_dateselect import MDDateSelect
from .mdcheckbox import MDCheckBox

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