Files
pystagram/code/profiles/urls.py
2017-06-02 17:47:33 +09:00

8 lines
148 B
Python
Executable File

from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^(?P<username>[\w.@+-]+)/$', views.profile, name='profile'),
]