Files
breccia-mapper/people/views/__init__.py
James Graham 989c8141b3 feat: display organisations on map
Add buttons to toggle organisations and people

Resolves #87
2021-03-09 14:55:31 +00:00

21 lines
261 B
Python

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