mirror of
https://github.com/jazzband/django-avatar.git
synced 2026-03-16 22:20:30 +00:00
url() => path()
This commit is contained in:
parent
6ccc046386
commit
502d96f81f
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ that are required. A minimal integration can work like this:
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
# ...
|
# ...
|
||||||
url('avatar/', include('avatar.urls')),
|
path('avatar/', include('avatar.urls')),
|
||||||
]
|
]
|
||||||
|
|
||||||
4. Somewhere in your template navigation scheme, link to the change avatar
|
4. Somewhere in your template navigation scheme, link to the change avatar
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue