#24582: ModelAdmin.delete_view(). List of items on level 3 not converted to html
list
-------------------------------+--------------------------------------
     Reporter:  shultais       |                    Owner:  nobody
         Type:  Uncategorized  |                   Status:  new
    Component:  contrib.admin  |                  Version:  1.8
     Severity:  Normal         |               Resolution:
     Keywords:                 |             Triage Stage:  Unreviewed
    Has patch:  0              |      Needs documentation:  0
  Needs tests:  0              |  Patch needs improvement:  0
Easy pickings:  0              |                    UI/UX:  0
-------------------------------+--------------------------------------
Changes (by timgraham):

 * needs_better_patch:   => 0
 * needs_tests:   => 0
 * needs_docs:   => 0


Comment:

 Could you please share your models? I couldn't reproduce this from the
 relationships you described. Here is what I tried:
 {{{
 class Category(models.Model):
     name = models.CharField(max_length=100)

 class Product(models.Model):
     name = models.CharField(max_length=100)
     category = models.ForeignKey(Category)

 class Video(models.Model):
     product = models.ForeignKey(Product)

 class Order(models.Model):
     product = models.ForeignKey(Product)
 }}}

--
Ticket URL: <https://code.djangoproject.com/ticket/24582#comment:1>
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 post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/066.3fd82b11892460de1b0b2e234e1bbc2a%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to