2008/5/6 Greg <[EMAIL PROTECTED]>:
>
>  Hello,
>  Quick question for ya.  For some reason I don't know how to make a OR
>  statment:  Below is my code:
>
>  ////////
>
>  def Order(models.Model):
>     order_status = models.CharField(max_length=2,
>  choices=ORDER_STATUS, blank=True)
>
>     def save(self):
>         if self.order_status == 3 or 4 (??)
>
>  ////////
>
>  How do I make the if statement to check if the order_status is either
>  a 3 or 4
>
>  Thanks

if self.order_status in [3, 4]

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