from django.conf.urls import url from .views import * urlpatterns = ( url(r'^branch/data/$', branch_list), url(r'^branch/save/$', branch_save), )