|
from django.urls import path
|
|
|
|
from ..views.insurance import *
|
|
|
|
app_name = 'insurance'
|
|
urlpatterns = [
|
|
path('', index, name='index'),
|
|
path('list', list_insurances, name='list'),
|
|
path('form', form_insurance, name='form'),
|
|
path('add', add_insurance, name='add'),
|
|
|
|
]
|
|
|