1from django.urls import path 2 3from . import views 4 5app_name = 'gbm' 6urlpatterns = [ 7 path('', views.gbm, name='gbm'), 8] 9 10