Доброго времени!
Как мне реализовать такую вещь как Tags(та что во многих блогах)? Т.е. мне нужно знать количество повторений каждого уникального элемента в модели так чтобы потом задать каждому такому элементу нужный размер шрифта.
ttyбрр…а по русски можно?
количество повторений каждого уникального элемента в модели так чтобы потом задать каждому такому элементу нужный размер шрифта
django-tagging overview
tag_cloud_for_model
~~~~~~~~~~~~~~~~~~~
Retrieves a list of ``Tag`` objects for a given model, with tag cloud
attributes set, and stores them in a context variable.
Usage::
{% tag_cloud_for_model as %}
The model is specified in ``.`` format.
Extended usage::
{% tag_cloud_for_model as with %}
Extra options can be provided after an optional ``with`` argument, with
each option being specified in ``=`` format. Valid extra
options are:
``steps``
Integer. Defines the range of font sizes.
``min_count``
Integer. Defines the minimum number of times a tag must have
been used to appear in the cloud.
``distribution``
One of ``linear`` or ``log``. Defines the font-size
distribution algorithm to use when generating the tag cloud.
Examples::
{% tag_cloud_for_model products.Widget as widget_tags %}
{% tag_cloud_for_model products.Widget as widget_tags with steps=9 min_count=3 distribution=log %}