from django.urls import path from . import views app_name="preferences" urlpatterns = [ path('generalPreferences', views.generalPreferences, name="generalPreferences"), path('cotisationsIndex', views.cotisationsIndex, name="cotisationsIndex"), path('addCotisation', views.addCotisation, name="addCotisation"), path('editCotisation/', views.editCotisation, name="editCotisation"), path('deleteCotisation/', views.deleteCotisation, name="deleteCotisation"), path('paymentMethodsIndex', views.paymentMethodsIndex, name="paymentMethodsIndex"), path('addPaymentMethod', views.addPaymentMethod, name="addPaymentMethod"), path('editPaymentMethod/', views.editPaymentMethod, name="editPaymentMethod"), path('deletePaymentMethod/', views.deletePaymentMethod, name="deletePaymentMethod"), path('inactive', views.inactive, name="inactive"), path('getConfig', views.get_config, name="getConfig"), path('getCotisation/', views.get_cotisation, name="getCotisation") ,]