barseghyanartur / django-admin-timeline

A Facebook-like timeline app for Django admin. It's very similar to built-in feature Daily progress, but has nicer templates and infinite scroll. Actions are broken up by day, then by action. It's possible to filter actions by user (multiple select) and content type (multiple select).
https://pypi.python.org/pypi/django-admin-timeline
53 stars 10 forks source link

Not working on django 1.10 #4

Closed RamizSami closed 7 years ago

RamizSami commented 7 years ago

The following line in views.py is not working: return render_to_response( template_name, context, context_instance=RequestContext(request) ) please update it to: return render(request, template_name, context)

It will work in django 1.10 then

barseghyanartur commented 7 years ago

@RamizSami:

Correct. It's not yet compatible with Django 1.9 and 1.10. I've added it to the milestone, although not sure when it will be done.

RamizSami commented 7 years ago

I've made it work with django 1.10. Just replace the above mentioned lines and it will work.

barseghyanartur commented 7 years ago

@RamizSami:

Solved in 1.6.