Opened 19 years ago

Closed 19 years ago

Last modified 17 years ago

#573 closed enhancement (fixed)

[patch] add plus sign to ManyToMany fields in admin

Reported by: hp@… Owned by: Adrian Holovaty
Component: contrib.admin Version:
Severity: normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

This patch adds the "add-another" button to ManyToMany fields as well as ManyToOne.

Makes life a tad easier :)

Index: django/views/admin/main.py
===================================================================
--- django/views/admin/main.py  (revision 712)
+++ django/views/admin/main.py  (working copy)
@@ -752,7 +752,7 @@
     # fields with relationships to editable objects get an "add another" link,
     # but only if the field doesn't have raw_admin ('cause in that case they get
     # the "add" button in the popup)
-    elif field.rel and isinstance(field.rel, meta.ManyToOne) and field.rel.to.admin:
+    elif field.rel and isinstance(field.rel, meta.ManyToOne) or isinstance(field.rel, meta.ManyToMany) and field.rel.to.admin:
         t.append('{%% if perms.%s.%s %%}' % (field.rel.to.app_label, field.rel.to.get_add_permission()))
         t.append(' <a href="../../../%s/%s/add/" class="add-another" id="add_%s" onclick="return showAddAnotherPopup(this);">' % \
                     (field.rel.to.app_label, field.rel.to.module_name, field_id))

Attachments (1)

add_+_to_ManyToMany.diff (949 bytes ) - added by anonymous 19 years ago.

Download all attachments as: .zip

Change History (4)

by anonymous, 19 years ago

Attachment: add_+_to_ManyToMany.diff added

comment:1 by Adrian Holovaty, 19 years ago

Status: newassigned

comment:2 by Adrian Holovaty, 19 years ago

Resolution: fixed
Status: assignedclosed

(In [714]) Fixed #573 -- Added 'Add another' link to many-to-many fields in admin. Thanks, hp@…

comment:3 by (none), 17 years ago

milestone: Version 1.0

Milestone Version 1.0 deleted

Note: See TracTickets for help on using tickets.
Back to Top