3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-05-18 23:41:48 +00:00
coope/preferences/urls.py
2019-06-23 14:53:18 +02:00

24 lines
1.4 KiB
Python

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/<int:pk>', views.editCotisation, name="editCotisation"),
path('deleteCotisation/<int:pk>', views.deleteCotisation, name="deleteCotisation"),
path('paymentMethodsIndex', views.paymentMethodsIndex, name="paymentMethodsIndex"),
path('addPaymentMethod', views.addPaymentMethod, name="addPaymentMethod"),
path('editPaymentMethod/<int:pk>', views.editPaymentMethod, name="editPaymentMethod"),
path('deletePaymentMethod/<int:pk>', views.deletePaymentMethod, name="deletePaymentMethod"),
path('priceProfilesIndex', views.price_profiles_index, name="priceProfilesIndex"),
path('addPriceProfile', views.add_price_profile, name="addPriceProfile"),
path('editPriceProfile/<int:pk>', views.edit_price_profile, name="editPriceProfile"),
path('deletePriceProfile/<int:pk>', views.delete_price_profile, name="deletePriceProfile"),
path('inactive', views.inactive, name="inactive"),
path('getConfig', views.get_config, name="getConfig"),
path('getCotisation/<int:pk>', views.get_cotisation, name="getCotisation")
,]