mirror of
https://github.com/jazzband/django-admin-sortable.git
synced 2026-05-22 05:41:55 +00:00
Removed print statement in template tag.
Increased version to 1.0.7
This commit is contained in:
parent
31f28d5b50
commit
8db3ad417b
2 changed files with 1 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
VERSION = (1, 0, 6, "f", 0) # following PEP 386
|
VERSION = (1, 0, 7, "f", 0) # following PEP 386
|
||||||
DEV_N = None
|
DEV_N = None
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -24,5 +24,4 @@ def render_list_items(context, list_objects):
|
||||||
|
|
||||||
@register.inclusion_tag('adminsortable/shared/object_rep.html', takes_context=True)
|
@register.inclusion_tag('adminsortable/shared/object_rep.html', takes_context=True)
|
||||||
def render_object_rep(context, object):
|
def render_object_rep(context, object):
|
||||||
print object
|
|
||||||
return {'object' : object}
|
return {'object' : object}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue