Changes between Initial Version and Version 4 of Ticket #154
- Timestamp:
- Aug 9, 2005, 5:44:47 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #154
- Property Status new → assigned
- Property Milestone → Version 1.0
-
Ticket #154 – Description
initial v4 1 1 If 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:3 2 3 {{{ 4 4 Traceback (most recent call last): 5 5 … … 23 23 24 24 DELETE FROM blog_entries WHERE id=2 25 25 }}} 26 26 27 27 This 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 {{{ 30 meta.ManyToManyField(Category, filter_interface=meta.HORIZONTAL), 31 }}} 29 32 30 33 I 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.