mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 11:23:10 +00:00
Add missing parameter to get_history_object call
This commit is contained in:
parent
4ce58ddb3f
commit
f6fdaa7007
1 changed files with 2 additions and 2 deletions
|
@ -557,7 +557,7 @@ def detailed_history(request, object_name, object_id):
|
||||||
raise Http404(_("No model found."))
|
raise Http404(_("No model found."))
|
||||||
|
|
||||||
# Get instance and check permissions
|
# Get instance and check permissions
|
||||||
can_view, instance = get_history_object(model, object_name, object_id)
|
can_view, instance = get_history_object(request, model, object_name, object_id)
|
||||||
if not can_view:
|
if not can_view:
|
||||||
return instance
|
return instance
|
||||||
|
|
||||||
|
@ -603,7 +603,7 @@ def history(request, application, object_name, object_id):
|
||||||
except LookupError:
|
except LookupError:
|
||||||
raise Http404(_("No model found."))
|
raise Http404(_("No model found."))
|
||||||
|
|
||||||
can_view, instance = get_history_object(model, object_name, object_id)
|
can_view, instance = get_history_object(get_history_object, model, object_name, object_id)
|
||||||
if not can_view:
|
if not can_view:
|
||||||
return instance
|
return instance
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue