snipt/accounts/urls.py

8 lines
220 B
Python
Raw Normal View History

from accounts import views
2015-07-24 18:39:25 -07:00
from django.conf.urls import *
2015-07-24 18:28:31 -07:00
urlpatterns = \
patterns('',
url(r'^stats/$', views.stats, name='account-stats'),
url(r'^', views.account, name='account-detail'))