I would recommend Intermediate Models as a good solution for these type of weird situations
https://docs.djangoproject.com/en/dev/topics/db/models/#extra-fields-on-many-to-many-relationships Cheers L. On 2 July 2014 12:20, Jorge Andrés Vergara Ebratt <javebr...@gmail.com> wrote: > Hello everyone, > > I'm trying to create a system that has 3 different user types: > > Independent Agent, that basically is what it sounds like, and Django's User > Model works fine for this one. > > But the catch comes from the other 2, because it also needs to support > agencies and agencies have sub-users... > > I'm trying to figure out the best way to do this, currently I'm trying with > User profiles but don't really know if what I'm doing is correct, I'm doing > this: > > > class IndependentAgent(models.Model): > user = models.OneToOneField(User) > tipo_licencia = models.CharField(max_lenght=140) > > > class AgencyUser(models.Model): > user = models.OneToOneField(User) > agency = models.ForeignKey(User, related_name='Agency') > > > Can I do this? Like that user profile for Agency User would let me 'asign' > those users to their respective agencies so that later I can set my code > that those users can only see that agency's information? > > Or would making groups be better to handle this kind of situations? > > Appreciate any help I can get, thanks in advance > > > -- > Jorge Andres Vergara Ebratt > #SoftwareDeveloper (Or at least trying to be) > @javebratt > facebook.com/javebratt > > -- > 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. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/CAAeX05Gc6gnjdDi%3Dv%2B-n72mSi1JWdO1ecYUQORogvMifAw5o7w%40mail.gmail.com. > For more options, visit https://groups.google.com/d/optout. -- The idea is that a beautiful image is frameable. Everything you need to see is there: It’s everything you want, and it’s very pleasing because there’s no extra information that you don’t get to see. Everything’s in a nice package for you. But sublime art is unframeable: It’s an image or idea that implies that there’s a bigger image or idea that you can’t see: You’re only getting to look at a fraction of it, and in that way it’s both beautiful and scary, because it’s reminding you that there’s more that you don’t have access to. It’s now sort of left the piece itself and it’s become your own invention, so it’s personal as well as being scary as well as being beautiful, which is what I really like about art like that. ----------------------------------------------------------------------------------------------------------- Adventure Time http://theholenearthecenteroftheworld.com/ -- 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. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAGBeqiPXRxw7t6qMdPNH_ECGwnK8DZrP7S1-5uzsoC3%2BtsNq5g%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.