Version 0.1.4.

* Django dropped 'staticfiles' in templates. Use 'static' instead.
master
Joseph Bane 2020-03-24 16:56:33 -04:00
parent da8decc87a
commit d4ad56181a
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{% load i18n staticfiles %}
{% load i18n static %}
<h3>{% blocktrans with filter_title=title %} By {{ filter_title }} {% endblocktrans %}</h3>
<form method="get">

View File

@ -9,7 +9,7 @@ with open(os.path.join(CURRENT_WORKING_DIRECTORY, 'README.md')) as fp:
setup(
name='django-admin-autocomplete-list-filter',
version='0.1.3',
version='0.1.4',
description='Ajax autocomplete list filter for Django admin',
long_description=README,
long_description_content_type='text/markdown',