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.
13 lines
381 B
13 lines
381 B
# -*- coding:utf-8 -*-
|
|
from django.conf.urls import url
|
|
|
|
import views
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^$', views.home, name='client_home'),
|
|
url(r'^pays$', views.pays, name='client_pays'),
|
|
url(r'^buy$', views.buy_service, name='client_buy'),
|
|
url(r'^debts$', views.debts_list, name='client_debts'),
|
|
url(r'^debts/(?P<d_id>\d+)$', views.debt_buy, name='client_debt_buy')
|
|
]
|