8 lines
148 B
Python
Executable File
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'),
|
|
]
|