django-taggit-helpers icon indicating copy to clipboard operation
django-taggit-helpers copied to clipboard

Django admin helper classes for django-taggit tags

Results 5 django-taggit-helpers issues
Sort by recently updated
recently updated
newest added

#9 More about this https://docs.djangoproject.com/en/3.2/releases/3.2/#automatic-appconfig-discovery fix for taggit_helpers/__init__.py ``` import django if django.VERSION < (3, 2): default_app_config = "taggit_helpers.apps.TaggitHelpersConfig" ```

I got this error ImportError: cannot import name 'TaggitListFilter' from 'taggit_helpers' (/Users/kanel/Documents/SKT/venv/lib/python3.7/site-packages/taggit_helpers/__init__.py)

Set tag model used

Hi there, what's the most straightforward approach to localize your fields ``` python taggit_counter.admin_order_field = 'taggit_counter' taggit_counter.short_description = '# of Tags' ``` for example?