Files
breccia-mapper/people/views/__init__.py
James Graham 9db870bcb0 feat: add views for Organisation model
Location picker on update view
2021-01-15 14:58:05 +00:00

19 lines
241 B
Python

"""
Views for displaying or manipulating models within the `people` app.
"""
from . import (
network,
organisation,
person,
relationship
)
__all__ = [
'network',
'organisation',
'person',
'relationship',
]