djangonauts / django-hstore

PostgreSQL HStore support for Django.
http://django-hstore.readthedocs.io/
Other
517 stars 142 forks source link

Broken image "src" for icons in admin for Django >= 1.9 #148

Closed gpip closed 8 years ago

gpip commented 8 years ago

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.

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' %}"/>

nemesifier commented 8 years ago

Thx for reporting, send a patch if you can.

nemesifier commented 8 years ago

Closed by #149 and 9ed1804