ASKBOT / askbot-devel

Askbot is a Django/Python Q&A forum. **Contributors README**: https://github.com/ASKBOT/askbot-devel#how-to-contribute. Commercial hosting of Askbot and support are available at https://askbot.com
Other
1.56k stars 626 forks source link

Enhancement Request: Display tag counts with autocompletion #734

Open tfoote opened 6 years ago

tfoote commented 6 years ago

Sometimes users mistype or choose a similar tag. After which they are displayed in alphabetical order so you sometimes get divergence when new users are presented with the autocomplete suggestions.

It would be great to display them in popularity order and display the number of usages of each one so instead of : image

You'd get

univeral
...
universal               0
universal_robot     100
universal-robot      10
universal-robots     1

Which would make it clear that universal_robot is the broadly used one that you likely want to choose as well.

This is solving a similar issue as: https://github.com/ASKBOT/askbot-devel/issues/564 experienced here: https://answers.ros.org/question/271895/is-there-a-plan-to-clean-up-tags-on-ros-answers-sit

Zerokami commented 6 years ago

You could use Select2 JS library for achieving this