from django.urls import path from . import views urlpatterns = [ path('', views.home, name='Home'), path('/feature/new', views.feature_new, name="feature_new"), path('/feature/', views.feature_detail, name='feature_detail'), path('/features/', views.features_list, name="features_list"), path('/package/new', views.package_new, name="package_new"), path('/package/', views.package_detail, name='package_detail'), path('/packages/', views.packages_list, name="packages_list"), path('features/search/', views.feature_select_search, name="feature_select_search"), path('traits/search/', views.trait_search, name="trait_search"), path('map', views.map_page, name="Map"), path('api/pins/', views.pin_list, name='pin_list'), ]