Thanks!
That is indeed in a non-intuitive location.
--~--~-~--~~~---~--~~
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
On Wed, 2006-09-06 at 22:40 +, cyberco wrote:
> My model has a choice field:
>
> ===
> class Foo(models.Model):
> STATUS = (
> ('C', 'Created'),
> ('E', 'Edited'),
> ('F', 'Finished'),
> )
> status = models.CharField(
My model has a choice field:
===
class Foo(models.Model):
STATUS = (
('C', 'Created'),
('E', 'Edited'),
('F', 'Finished'),
)
status = models.CharField(maxlength=1, choices=STATUS)
=
3 matches
Mail list logo