hi all,

I've create a class whith a ForeignKey() who is visualized as <select> in
admin interface ... when I select a option from the menu and save, the
option selected change its state ('confermata') and must NOT appear in
the subsequents INSERT ... 

class Conferma(models.Model):
        fk_prev = models.ForeignKey(Previsione, verbose_name="previsione",
                limit_choices_to=models.Q(confermata=False))
        pilota = models.CharField(maxlength=30, db_index=True)
        h_chiamata = models.TimeField("ora chiamata pilota", help_text="hh:mm")
        vadolig = models.BooleanField("vado ligure")
        ...

the problem is that when I go to update, the option loaded with the
ForeignKey NOT appear into the select menu, because it's 'confermata' ...

how can I tell to the "admin" that in UPDATE ONLY the option 'confermata'
with the Conferma() must show into the select menu ??

tanks in advance and sorry for the english !!

-- 
#include <stdio.h>
int main(void){char c[]={10,65,110,116,111,110,105,111,32,98,97,114,98,111,110,
101,32,60,104,105,110,100,101,109,105,116,64,116,105,115,99,97,108,105,110,101,
116,46,105,116,62,10,10,0};printf("%s",c);return 0;}

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