Just now {% ifequal %} doesn't support filter expressions as arguments. So
you must prepare values by {% with %} tag before using them in {% ifequal
%}.


On Mon, Mar 2, 2009 at 12:22 PM, eli <eliasz.wont...@gmail.com> wrote:

>
> Hi,
>
> I have a problem:
>
> Python:
> week = [1, 2, 3, 4, 5, 6, 7]
> # There are only two records in objects_list with date_start field =
> 01.01.2000 and 02.01.2000
> objects_list = SomeModel.objects.all()
>
> Template:
>
> {% for day in week %}
>  {% for e in objects_list %}
>    {% ifequal e.date_start|date:"j" day %}
>       <p>I'm in...</p>
>    {% endifequal %}
>  {% endfor %}
> {% endfor %}
>
> Output: none. So, trying to set the same types:
>
> {% for day in week %}
>  {% for e in objects_list %}
>    {% ifequal e.date_start|date:"j"|floatformat day|floatformat %}
>       <p>I'm in...</p>
>    {% endifequal %}
>  {% endfor %}
> {% endfor %}
>
> Output:
> <p>I'm in...</p>
> <p>I'm in...</p>
> <p>I'm in...</p>
> <p>I'm in...</p>
> <p>I'm in...</p>
> <p>I'm in...</p>
> <p>I'm in...</p>
>
> It should be only two times: <p>I'm in...</p>
>
> Another way:
>
> {% for day in week %}
>  {% for e in objects_list %}
>    {% ifequal e.date_start|date:"j"|floatformat day %}
>       <p>I'm in...</p>
>    {% endifequal %}
>  {% endfor %}
> {% endfor %}
>
> Output: none, and the last one
>
> {% for day in week %}
>  {% for e in objects_list %}
>    {% ifequal e.date_start|date:"j"|stringformat:"s" day|
> stringformat:"s" %}
>       <p>I'm in...</p>
>    {% endifequal %}
>  {% endfor %}
> {% endfor %}
>
> Output:
> <p>I'm in...</p>
> <p>I'm in...</p>
> <p>I'm in...</p>
> <p>I'm in...</p>
> <p>I'm in...</p>
> <p>I'm in...</p>
> <p>I'm in...</p>
>
> I have no idea where is the bug...
>
> Thanks for help.
>
> regards.
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to