admin list help

2011-02-23 Thread Bobby Roberts
hi group. I really need to know how to do something in regard to my models shown below. Please consider these three models and then look at the bottom for my question. garments class modela (models.Model): id = models.AutoField (primary_key=True) type = models.CharField (max_leng

Re: /admin list help ASAP

2010-10-20 Thread Steve Holden
On 10/20/2010 11:55 PM, Mike Dewhirst wrote: > On 21/10/2010 1:24pm, Bobby Roberts wrote: >> hi all. I have two models setup let's call them >> >> Gallery >> Photos >> >> photos has a field as such: >> >> GalleryId = models.ForeignKey('Gallery', verbose_name=_('Gallery Id'), >> related_name='Galle

Re: /admin list help ASAP

2010-10-20 Thread Mike Dewhirst
On 21/10/2010 1:24pm, Bobby Roberts wrote: hi all. I have two models setup let's call them Gallery Photos photos has a field as such: GalleryId = models.ForeignKey('Gallery', verbose_name=_('Gallery Id'), related_name='Gallery_Id',blank=False, null=False, help_text=_("Please choose the galler

/admin list help ASAP

2010-10-20 Thread Bobby Roberts
hi all. I have two models setup let's call them Gallery Photos photos has a field as such: GalleryId = models.ForeignKey('Gallery', verbose_name=_('Gallery Id'), related_name='Gallery_Id',blank=False, null=False, help_text=_("Please choose the gallery to which you wish to associate this photo."