|
|
@ -19,10 +19,10 @@ |
|
|
# with this program; if not, write to the Free Software Foundation, Inc., |
|
|
# with this program; if not, write to the Free Software Foundation, Inc., |
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
|
|
from django.conf.urls import include, url |
|
|
from django.conf.urls import include, url |
|
|
from . import comnpay, cheque, note |
|
|
from . import comnpay, cheque, note_kfet |
|
|
|
|
|
|
|
|
urlpatterns = [ |
|
|
urlpatterns = [ |
|
|
url(r'^comnpay/', include(comnpay.urls, namespace='comnpay')), |
|
|
url(r'^comnpay/', include(comnpay.urls, namespace='comnpay')), |
|
|
url(r'^cheque/', include(cheque.urls, namespace='cheque')), |
|
|
url(r'^cheque/', include(cheque.urls, namespace='cheque')), |
|
|
url(r'^note/', include(note.urls, namespace='note')), |
|
|
url(r'^note_kfet/', include(note_kfet.urls, namespace='note_kfet')), |
|
|
] |
|
|
] |
|
|
|