yes they are strings,
yes in python if you do

if item1:
    pass

it will evaluate the string as a true/false depending on existance.

however, comparing two strings for equality... checks if they are
equal.

{% if item1 %}
{% if item2 %}
blah
{% endif %}
{% endif %}


On Jun 19, 1:50 pm, mark <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I am stuck, please help.
>
> This is what I am trying to do:
>
> {% ifequal item1 item2 %}
>     ...do what I want
>
> item1 = '/test/something/'
> item2 = '/test/somethingelse/'
>
> or
>
> item1 = '/test/'
> tem2 = '/test/simething'
>
> both should evaluate to true and execute the if block.
>
> I experimented with 'item|slice[:]' but I could not find out how to
> determin the position (index) of the second '/'.
>
> Please note I am a beginner in Django and I should probably know how
> to solve this but obviously I do not :-((
>
> Best Regards,
> Mark
--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to