On Wed, Sep 2, 2009 at 4:44 PM, Sandra Django<sandradja...@gmail.com> wrote:
> Hi friends, Can I do a condition depending on my model name? For example, I
> did that:
> {% ifequal model.name "Mymodelname" %}
>      do something
> {% endifequal %}
>
> But don't work. Someone could help me?

As part of your select could you tag the name as a hard coded column
name and then check for it as a regular field?

SELECT 'Mymodelname' AS `name`, other, fields, *
FROM Mymodelname
WHERE ...

Not sure how you do it as a QuerySet though.

-- 
Andrew McGregor
07940 22 33 11

--~--~---------~--~----~------------~-------~--~----~
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