djbrown/hbscorez

View on GitHub
src/districts/urls.py

Summary

Maintainability
A
1 hr
Test Coverage
A
100%
from django.urls import include, path

from districts.views import detail

app_name = "districts"

urlpatterns = [
    path("<int:bhv_id>/", include([path("", detail, name="detail")])),
]