urls.py 229 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 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"), ]