springload / madewithwagtail

A showcase of sites and apps made with Wagtail CMS, the easy to use, open source Django content management system
http://madewithwagtail.org
MIT License
84 stars 21 forks source link

Tags are duplicated because of different cases #40

Closed thibaudcolas closed 7 years ago

thibaudcolas commented 7 years ago

We have research and Research, Responsive and responsive, and potentially others. Tags should be case insensitive IMHO.

matheusbrat commented 7 years ago

http://django-taggit.readthedocs.io/en/latest/getting_started.html?highlight=TAGGIT_CASE_INSENSITIVE

Adding this flag should solve it.

TAGGIT_CASE_INSENSITIVE = True

Maybe we will need some migration to clean up the already existing tags.

thibaudcolas commented 7 years ago

Ah great! I love it when it's THAT simple.