from django.urls import path from backoffice.views import taxes urlpatterns = [ path('', taxes.TaxListView.as_view(), name='tax_list'), ]