File: __init__.py

package info (click to toggle)
python-django-extra-views 0.14.0-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 468 kB
  • sloc: python: 1,591; makefile: 142; sh: 6
file content (32 lines) | stat: -rw-r--r-- 780 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from extra_views.advanced import (
    CreateWithInlinesView,
    FormSetSuccessMessageMixin,
    InlineFormSetFactory,
    NamedFormsetsMixin,
    SuccessMessageMixin,
    UpdateWithInlinesView,
)
from extra_views.contrib.mixins import SearchableListMixin, SortableListMixin
from extra_views.dates import CalendarMonthView
from extra_views.formsets import (
    FormSetView,
    InlineFormSetView,
    ModelFormSetView,
)

__version__ = "0.14.0"

__all__ = [
    "CreateWithInlinesView",
    "FormSetSuccessMessageMixin",
    "InlineFormSetFactory",
    "NamedFormsetsMixin",
    "SuccessMessageMixin",
    "UpdateWithInlinesView",
    "SearchableListMixin",
    "SortableListMixin",
    "CalendarMonthView",
    "FormSetView",
    "InlineFormSetView",
    "ModelFormSetView",
]