Blame view

src/core/pyros_django/monitoring/urls.py 323 Bytes
3df2d31a   haribo   #3430 : dates are...
1
from django.conf.urls import url
ae04c9dd   Patrick Maeght   __init__
2
from django.urls import path
3df2d31a   haribo   #3430 : dates are...
3
4
5
from . import views

urlpatterns = [
ae04c9dd   Patrick Maeght   __init__
6
7
    path('', views.index, name='index'),
    path('weather/config', views.weather_config, name="weather_config"),
e68e2cea   Patrick Maeght   weather config up...
8
    path('weather/config/update', views.weather_config_update, name="weather_config_update"),
3df2d31a   haribo   #3430 : dates are...
9
              ]