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

Incompatible with django-suit #12

Open jayvdb opened 4 years ago

jayvdb commented 4 years ago

See https://github.com/darklow/django-suit/issues/658#issuecomment-618162072

barseghyanartur commented 4 years ago

I'm not familiar with django-suit (I only know it's a commercial product, advanced django admin theme).

Can you provide a fix?

jayvdb commented 4 years ago

I only did limited testing with it, but it is popular.

Btw, I have integrated admin-timeline into the admin menu with https://github.com/jsocol/django-adminplus - works quite well. In urls.py:

    if 'admin_timeline' in settings.INSTALLED_APPS:
        from admin_timeline.views import log as timeline
        admin.site.register_view('timeline/', 'Timeline',
                                 view=timeline)
barseghyanartur commented 4 years ago

I only did limited testing with it, but it is popular.

Btw, I have integrated admin-timeline into the admin menu with https://github.com/jsocol/django-adminplus - works quite well. In urls.py:

    if 'admin_timeline' in settings.INSTALLED_APPS:
        from admin_timeline.views import log as timeline
        admin.site.register_view('timeline/', 'Timeline',
                                 view=timeline)

Thanks. I'll mention it in docs.