urls.py 229 Bytes
from django.conf.urls import url
from django.urls import path
from . import views

urlpatterns = [
    path('', views.index, name='index'),
    path('weather/config', views.weather_config, name="weather_config"),
              ]