Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
{% if {{result}} == 'Invalid' %}
 <span class="error-message-uname">Invalid .</span>
{% endif %}
share|improve this question

closed as not a real question by Stewbob, Conner, Tim Medora, plaes, Maerlyn Aug 18 '12 at 9:55

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

That depends on what version of Django you're using. Since Django 1.2, this is valid:

{% if result == 'Invalid' %}
    <span class="error-message-uname">Invalid .</span>
{% endif %}

For earlier versions, use ifequal:

{% ifequal result 'Invalid' %}
    <span class="error-message-uname">Invalid .</span>
{% endifequal %}
share|improve this answer
That's fantastic. I've upgraded to django 1.2.3 a while back but didn't bother to look into all of the changes! Browsing stack is great : ) – Yuji 'Tomita' Tomita Dec 17 '10 at 19:52
@Yuji - there's some great stuff in Django 1.2 - I'd definitely encourage you to take a look through the release notes. – Dominic Rodger Dec 17 '10 at 20:33
{% if result == 'Invalid' %}
    <span class="error-message-uname">Invalid .</span>
{% endif %}

See Django doc

share|improve this answer
'if' statement improperly formatted error i am getting. – xasjaiod123 Dec 17 '10 at 9:30

Not the answer you're looking for? Browse other questions tagged or ask your own question.