You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.1 KiB
24 lines
1.1 KiB
from django.conf.urls import url
|
|
|
|
import views
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^$', views.peoples, name='people_list'),
|
|
url(r'^addabon$', views.addabon, name='add_abon'),
|
|
url(r'^(?P<uid>\d+)$', views.abonhome, name='abon_home'),
|
|
|
|
url(r'^(?P<uid>\d+)/services$', views.abon_services, name='abon_services'),
|
|
url(r'^(?P<uid>\d+)/amount', views.abonamount, name='abon_amount'),
|
|
url(r'^(?P<uid>\d+)/debts', views.invoice_for_payment, name='abon_debts'),
|
|
url(r'^(?P<uid>\d+)/pay_history', views.pay_history, name='abon_phistory'),
|
|
|
|
url(r'^(?P<uid>\d+)/addinvoice$', views.add_invoice, name='add_invoice'),
|
|
url(r'^(?P<uid>\d+)/buy$', views.buy_tariff, name='buy_tariff'),
|
|
url(r'^(?P<uid>\d+)/chpriority$', views.chpriority, name='chpriority_tariff'),
|
|
url(r'^(?P<uid>\d+)/complete_service(?P<srvid>\d+)$', views.complete_service, name='compl_srv'),
|
|
url(r'^(?P<uid>\d+)/activate_service(?P<srvid>\d+)$', views.activate_service, name='activate_service'),
|
|
|
|
url(r'^(?P<uid>\d+)/unsubscribe_service(?P<srvid>\d+)$', views.unsubscribe_service,
|
|
name='unsubscribe_service')
|
|
]
|