This app holds functionality to examine energysystem network, aggregations and search abbreviations.
Install app via pip (currently only as GitHub dependency):
pip install git+https://github.com/sedos-project/django_energysystem_viewer.git
Add app to your installed apps in django project settings:
DJANGO_APPS = [
...,
"django_energysystem_viewer",
]
and add related urls in project urls.py like:
urlpatterns = [
...,
path("", include("django_energysystem_viewer.urls")),
]