Open Jitendra1965 opened 1 year ago
I fixed the issue after discovering that indeed the url
reference were modified 2 weeks ago in django-avatar
.
I made the changed in url calls in my code and that fixed it.
I opened the ticket to report that your documentation is out of sync with the application changes.
I fixed the issue after discovering that indeed the
url
reference were modified 2 weeks ago indjango-avatar
.I made the changed in url calls in my code and that fixed it.
I opened the ticket to report that your documentation is out of sync with the application changes.
What did you do to fix it?
Change log 8.0 says 'Use path and path converters (changes all url names from prefix avatar_ to avatar:.)' avatar_change is now avatar:change
I fixed the issue after discovering that indeed the
url
reference were modified 2 weeks ago indjango-avatar
. I made the changed in url calls in my code and that fixed it. I opened the ticket to report that your documentation is out of sync with the application changes.What did you do to fix it?
Sorry for the delay in responding. I did precisely what georgemahnuson wrote above.
I changed it to {% url 'avatar:change' %}
My code had been working fine since long with this package in django but suddenly, it has stopped with the following message.
Reverse for 'avatar_change' not found. 'avatar_change' is not a valid view function or pattern name.
I verified, all is setup correctly. Look like the problem is in this code:
href="{% url 'avatar_change' %}"
I noticed the
django-avatar
code was changed 2 weeks ago to fix the references. Could that be causing it?