Skip to content

Commit

Permalink
Made small simplification to admin_modify template tag logic
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2066 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Jan 19, 2006
1 parent 78c8be9 commit bfaff07
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions django/contrib/admin/templatetags/admin_modify.py
Expand Up @@ -216,13 +216,8 @@ def register_one_arg_tag(node):
parse_func = curry(do_one_arg_tag, node)
register.tag(tag_name, parse_func)

one_arg_tag_nodes = (
FieldWidgetNode,
EditInlineNode,
)

for node in one_arg_tag_nodes:
register_one_arg_tag(node)
register_one_arg_tag(FieldWidgetNode)
register_one_arg_tag(EditInlineNode)

#@register.inclusion_tag('admin/field_line', takes_context=True)
def admin_field_line(context, argument_val):
Expand Down

0 comments on commit bfaff07

Please sign in to comment.