[EMAIL PROTECTED] wrote:
> I'd really love to be able to do something like this:
> {% if videoObject.rating > 0 %}*{% endif %}
> {% if videoObject.rating > 1 %}*{% endif %}
> {% if videoObject.rating > 2 %}*{% endif %}
If this type of code is your goal, you could do something like:
{% ifequal videoObject.rating 1 %}*{% endif %}
{% ifequal videoObject.rating 2 %}**{% endif %}
{% ifequal videoObject.rating 3 %}***{% endif %}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---