Hi,

I have a problem (Django 1.1. alpha SVN):

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 %}
    {#  date:"j" - return day of the month without leading zeros. #}
    {% 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