Changes between Initial Version and Version 4 of Ticket #154


Ignore:
Timestamp:
Aug 9, 2005, 5:44:47 PM (19 years ago)
Author:
Adrian Holovaty
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #154

    • Property Status newassigned
    • Property MilestoneVersion 1.0
  • Ticket #154 – Description

    initial v4  
    11If you have an object with a manytomany relationship you can't delete it within the admin interface. As it spits out this error.
    2 There's been an error:
    32
     3{{{
    44Traceback (most recent call last):
    55
     
    2323
    2424DELETE FROM blog_entries WHERE id=2
    25 
     25}}}
    2626
    2727This is from trying to delete a blog entry that is tied to the categories. The line in the Entry model is:
    28  meta.ManyToManyField(Category, filter_interface=meta.HORIZONTAL),
     28
     29{{{
     30meta.ManyToManyField(Category, filter_interface=meta.HORIZONTAL),
     31}}}
    2932
    3033I can't remove the category linking before I delete it as it is a required field so it comes back with an error message saying that the field is required.
Back to Top