File: __init__.py

package info (click to toggle)
python-django-object-actions 5.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 296 kB
  • sloc: python: 738; makefile: 64; sh: 6
file content (18 lines) | stat: -rw-r--r-- 335 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""A Django app for adding object tools for models in the admin."""

__version__ = "5.0.0"


from .utils import (
    BaseDjangoObjectActions,
    DjangoObjectActions,
    action,
    takes_instance_or_queryset,
)

__all__ = [
    "BaseDjangoObjectActions",
    "DjangoObjectActions",
    "action",
    "takes_instance_or_queryset",
]