Fixed #573 -- Added 'Add another' link to many-to-many fields in admin. Thanks, hp@syntomax.com

git-svn-id: http://code.djangoproject.com/svn/django/trunk@714 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-09-29 03:19:14 +00:00
parent c1a16d54b0
commit 26021249a4
1 changed files with 1 additions and 1 deletions

View File

@ -752,7 +752,7 @@ def _get_admin_field_form_widget(field, name_prefix, rel, add, change):
# 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))