Найти - Пользователи
Полная версия: Количество повторений
Начало » Django » Количество повторений
1
tty
Доброго времени!

Как мне реализовать такую вещь как Tags(та что во многих блогах)? Т.е. мне нужно знать количество повторений каждого уникального элемента в модели так чтобы потом задать каждому такому элементу нужный размер шрифта.
playpauseandstop
django-tagging спасет отца русской демократии
Александр Кошелев
tty
количество повторений каждого уникального элемента в модели так чтобы потом задать каждому такому элементу нужный размер шрифта
брр…а по русски можно?
tty
Ну, к примеру, я хочу реализовать также как и в разделе Tags http://livedev.org/ .
playpauseandstop
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 %}
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB