Changeset 714
- Timestamp:
- 09/28/05 22:19:14 (3 years ago)
- Files:
-
- django/trunk/django/views/admin/main.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/views/admin/main.py
r693 r714 753 753 # but only if the field doesn't have raw_admin ('cause in that case they get 754 754 # the "add" button in the popup) 755 elif field.rel and isinstance(field.rel, meta.ManyToOne) and field.rel.to.admin:755 elif field.rel and (isinstance(field.rel, meta.ManyToOne) or isinstance(field.rel, meta.ManyToMany)) and field.rel.to.admin: 756 756 t.append('{%% if perms.%s.%s %%}' % (field.rel.to.app_label, field.rel.to.get_add_permission())) 757 757 t.append(' <a href="../../../%s/%s/add/" class="add-another" id="add_%s" onclick="return showAddAnotherPopup(this);">' % \
