django-taggit-templatetags
django-taggit-templatetags copied to clipboard
Templatetags for django-taggit.
Hello all. Is this project dead? I see a lot of PR waiting for merge from four years ago... Is any fork in a stable status? could we get approval...
``` {% get_taglist as tags for 'stories.Story' %} {% for tag in tags %} {{tag}} {% endfor %} ``` all tags ~100 `{% include_tagcloud 'stories.Story' %}` 10 tags O.o
The currently unused model in the code `AModel` causes data export to fail at commandline. Excluding taggit_templatetags fixes the issue but it really should be there at all.
Hi, I've added support for generating a size attribute for each tag, in a similar manner to how weights are generated (but with a list instead of a numerical range)....
I was pulling hair over a detail in the README that led me on to an attribute called "num_items", when it's in fact named "num_times". Keep up the good work!...
The path used to install the templates on MANIFEST.in doesn't work using pip with version 1.4.1 and distribute with version 0.7.3. Some older versions from pip and distribute somehow find...
You have a dummy model in models.py. This is not necessary. Consider this a bug-ticket! No need to use my fork, just empty the models.py please :) or just let...
Now it is possible to extract tags also from a queryset of generic objects (i.e.: subsets of a specific model)
The tag count doesn't seem to work where everything is zero and hence all elements under the generated tag cloud are equal weighted when display. Anyone else run into the...
The readme says that for tags in a tag cloud there is an attribute `num_items` but in the code it is `num_times`.