diff --git a/README.md b/README.md index 7093e7a..dc59b54 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ Refer to http://django-autocomplete-light.readthedocs.io/ for more detailed inst @admin.register(Person) class PersonAdmin(admin.ModelAdmin): class Media: # Empty media class is required if you are using autocomplete filter - pass # If you know better solution for altering admin.media from filter instance + pass # If you know better solution for altering admin.media from filter instance # - please contact me or make a pull request list_filter = [CountryFilter] diff --git a/README.rst b/README.rst index 1242664..61d9948 100644 --- a/README.rst +++ b/README.rst @@ -26,19 +26,19 @@ Installation .. code:: - pip install django-autocomplete-light dal_admin_filters`` + pip install django-autocomplete-light dal_admin_filters - Update INSTALLED\_APPS. You need too put django-autocomplete-light before admin .. code:: python - INSTALLED_APPS = [ - 'dal', - 'dal_select2', - 'dal_admin_filters', - # - 'django.contrib.admin', - ... other stuff there ... + INSTALLED_APPS = [ + 'dal', + 'dal_select2', + 'dal_admin_filters', + # + 'django.contrib.admin', + ... other stuff there ... ] Configuration