In admin.py I have
.......................................
class MovimentomagInline(admin.TabularInline):
    model=Movimentomag
    extra=3
    save_on_top=True

class MovimentoOperazioneOption(admin.ModelAdmin):
    list_display = ('segno', 'data_movimento', 'paziente','operatore')
    fields=(('segno','data_movimento'),('paziente','operatore'))
    inlines=[MovimentomagInline,]
    save_on_top=True
    order_by=['-data_movimento',]

admin.site.register(MovimentoOperazione,MovimentoOperazioneOption)


Now it happens that - under admin -  when I use "python manage.py runserver" in 
the developping context I can see in the inline section the "Add another ..." 
with the plus sign and I can add more lines in the inline section itself.
Submitting the same django procedure by means of Apache 2 I see the lines 
specified in the extra option but there's no longer the   "Add another ..." 
with the plus sign, therefore I cannot add more lines in the inline section.

How can I fix that?

Thanks
Vittorio



-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to