#897: Bi-Directional ManyToMany in Admin
-------------------------------+------------------------------------
     Reporter:  anonymous      |                    Owner:  nobody
         Type:  New feature    |                   Status:  new
    Component:  contrib.admin  |                  Version:
     Severity:  Normal         |               Resolution:
     Keywords:                 |             Triage Stage:  Accepted
    Has patch:  0              |      Needs documentation:  0
  Needs tests:  0              |  Patch needs improvement:  0
Easy pickings:  0              |                    UI/UX:  0
-------------------------------+------------------------------------
Description changed by khaled5321:

Old description:

> Allow amnytomany relationships to be defined both ways
> E.G
>
> {{{
> class ItemType(meta.Model):
>     name = meta.CharField(maxlength=100)
>     descritpion = meta.CharField(maxlength=250)
>
> class PropertyType(meta.Model):
>     name = meta.CharField(maxlength=100)
>     itemtypes = meta.ManyToManyField(ItemType)
> }}}
>
> Excellent. When I make a new property type in the admin screens I get a
> mutiselect window for item types.
>
> What I want to be able to do however is have this work back the other
> way too so that whe I create a new item i can specify what property
> types apply.
>
> Thanks

New description:

 Allow manytomany relationships to be defined both ways
 E.G

 {{{
 class ItemType(meta.Model):
     name = meta.CharField(maxlength=100)
     descritpion = meta.CharField(maxlength=250)

 class PropertyType(meta.Model):
     name = meta.CharField(maxlength=100)
     itemtypes = meta.ManyToManyField(ItemType)
 }}}

 Excellent. When I make a new property type in the admin screen I get a
 multiselect window for item types.

 What I want to be able to do however is have this work back the other
 way too so that when I create a new item I can specify what property
 types apply.

 Thanks

--

-- 
Ticket URL: <https://code.djangoproject.com/ticket/897#comment:47>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/010701895b7e9af0-959ec9de-8330-45d1-9bef-1221200b5fc1-000000%40eu-central-1.amazonses.com.

Reply via email to