We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
At templates/hstore_default_widget.html django_hstore links to admin/img/icon_addlink.gif and others, but Django 1.9 replaced those by svg ones.
templates/hstore_default_widget.html
admin/img/icon_addlink.gif
For instance, in django_hstore you'll find <img src="{{ STATIC_URL }}admin/img/icon_addlink.gif" width="10" height="10" alt="{% trans 'Add Another' %}">
<img src="{{ STATIC_URL }}admin/img/icon_addlink.gif" width="10" height="10" alt="{% trans 'Add Another' %}">
While Django expects something closer to <img src="{% static 'admin/img/icon-addlink.svg' %}" alt="{% trans 'Add Another' %}"/>
<img src="{% static 'admin/img/icon-addlink.svg' %}" alt="{% trans 'Add Another' %}"/>
The text was updated successfully, but these errors were encountered:
Thx for reporting, send a patch if you can.
Sorry, something went wrong.
Closed by #149 and 9ed1804
No branches or pull requests
At
templates/hstore_default_widget.html
django_hstore links toadmin/img/icon_addlink.gif
and others, but Django 1.9 replaced those by svg ones.For instance, in django_hstore you'll find
<img src="{{ STATIC_URL }}admin/img/icon_addlink.gif" width="10" height="10" alt="{% trans 'Add Another' %}">
While Django expects something closer to
<img src="{% static 'admin/img/icon-addlink.svg' %}" alt="{% trans 'Add Another' %}"/>
The text was updated successfully, but these errors were encountered: