Re: second level nested inlines not showing in django-nested-inlines

2015-05-03 Thread H M
hi, did you solved the problem? On Wednesday, April 16, 2014 at 7:59:10 AM UTC+2, Andreas Bloch wrote: > > I'm trying to add a nested admin interface using > https://github.com/s-block/django-nested-inline *but the 2nd level is not > showing up in the admin*... > > I have a foreign key relations

Re: second level nested inlines not showing in django-nested-inlines

2014-06-16 Thread Hangloser Firestarter
Someone managed to solve this problem? I have this problem, too. The level 1 is OK, but level 2 not functionate! -- 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

Re: Django-nested-inlines

2014-05-22 Thread Thiago borges dos reis
th is that django isn't the silver bullet. In the moment, i think > it doesn't really work. I'm doing my own "admin". > > > 2014-05-22 6:08 GMT-03:00 Vivi Blubb : > >> Hi, >> >> I do have the same problem. I'm using Python 2.7.5 and Django 1.

Re: Django-nested-inlines

2014-05-22 Thread Joris
min". 2014-05-22 6:08 GMT-03:00 Vivi Blubb <mailto:v.lieu...@gmail.com>>: Hi, I do have the same problem. I'm using Python 2.7.5 and Django 1.6.5. I followed the tutorials of nested inlines, but it doesn't work. There is no error message, but it does not

Re: Django-nested-inlines

2014-05-22 Thread Thiago borges dos reis
The truth is that django isn't the silver bullet. In the moment, i think it doesn't really work. I'm doing my own "admin". 2014-05-22 6:08 GMT-03:00 Vivi Blubb : > Hi, > > I do have the same problem. I'm using Python 2.7.5 and Django 1.6.5. I > follow

Re: Django-nested-inlines

2014-05-22 Thread Vivi Blubb
Hi, I do have the same problem. I'm using Python 2.7.5 and Django 1.6.5. I followed the tutorials of nested inlines, but it doesn't work. There is no error message, but it does not show the third inline. Actually there was a bug, because many did have the same problem, but still I co

second level nested inlines not showing in django-nested-inlines

2014-04-16 Thread Andreas Bloch
I'm trying to add a nested admin interface using https://github.com/s-block/django-nested-inline *but the 2nd level is not showing up in the admin*... I have a foreign key relationship between three models: ContractTemplate => ContractClause => ContractSubClauses (i.e. a template can have ma

Re: Django-nested-inlines

2014-03-14 Thread Thiago borges dos reis
the forms are not nested. 2014-03-14 10:01 GMT-03:00 Camilo Torres : > > On Wednesday, March 12, 2014 4:18:05 PM UTC-4:30, Thiago borges dos reis > wrote: >> >> from django.contrib import admin >> from nested_inlines.admin import NestedStackedInline,NestedModelAdmin, >> NestedTabularInline >> f

Re: Django-nested-inlines

2014-03-14 Thread Camilo Torres
On Wednesday, March 12, 2014 4:18:05 PM UTC-4:30, Thiago borges dos reis wrote: > > from django.contrib import admin > from nested_inlines.admin import > NestedStackedInline,NestedModelAdmin,NestedTabularInline > from models import Dieta, Cliente,Refeicao,Opcao > > > admin.site.register(Cliente)

Django-nested-inlines

2014-03-12 Thread Thiago borges dos reis
Someone knows how to use django-nested-inlines. I did this: from django.contrib import admin from nested_inlines.admin import NestedStackedInline,NestedModelAdmin,NestedTabularInline from models import Dieta, Cliente,Refeicao,Opcao admin.site.register(Cliente) class OpcaoInLine

nested inlines

2009-10-05 Thread Marek Pietrucha
Hello, Has anyone achieved something like nested inlines in the admin pages? Does anybody know about solutions to this matter? I know there is a patch for older versions of django but not only there are no new ones but also they didn't support editing (which makes it unusable). best regard

Nested Inlines / Multiple ManyToMany field admin support

2009-09-09 Thread Mike W.
Hey guys. I looked around this group & the web for an answer to this question, but I can't seem to find one. My application has Publications, which have multiple Authors. Each Author has one Person, but each Auther can have multiple Institutions. (This is an app to keep track of academic public

Re: Nested Inlines, dynamic forms, templates and all sorts of problems.

2007-10-10 Thread [EMAIL PROTECTED]
Hi yml, On 9 Oct, 20:11, yml <[EMAIL PROTECTED]> wrote: > In a very similar situation I have chosen option 2 for the following > reasons: > * the code was much more simple, at least simpler to maintain for me > * Very hight control on the layout of the form. Thanks for the reply. I think I'll

Re: Nested Inlines, dynamic forms, templates and all sorts of problems.

2007-10-09 Thread yml
rts and pictures are edited inline > with sections. > > What I would like to do is allow users to add sections and pictures to > a report at the same time (effectively nested inlines). > > In models: > > class Report(...): > fields... > > class Section(...): &

Nested Inlines, dynamic forms, templates and all sorts of problems.

2007-10-09 Thread Felix Ingram
e edited inline with reports and pictures are edited inline with sections. What I would like to do is allow users to add sections and pictures to a report at the same time (effectively nested inlines). In models: class Report(...): fields... class Section(...): report = ForeignKey(