from django.conf.urls import url from apps.account.views import * urlpatterns = ( url(r'^login/$', login, name='account_login'), )