Metadata-Version: 1.1
Name: admin-timeline
Version: 0.4
Summary: Facebook-like timeline for Django admin
Home-page: https://bitbucket.org/barseghyanartur/django-admin-timeline
Author: Artur Barseghyan
Author-email: artur.barseghyan@gmail.com
License: GPL 2.0/LGPL 2.1
Description: ======================
        django-admin-timeline
        ======================
        
        Description
        -----------------
        A Facebook-like timeline app for Django admin. It's very similar to built-in feature "Daily progress", but then
        has a nicer templates and infinite scroll implemented. Also, actions are broken up by day, then by action. Filtering
        by user is implemented too.
        
        License
        -----------------
        GPL 2.0/LGPL 2.1
        
        Requirements
        -----------------
        Django 1.5 (for older versions you should change the template (URLs and adjust the styles).
        
        Installation
        -----------------
        * Latest stable version on PyPI:
            $ pip install admin_timeline
        * Latest development version:
            $ pip install -e hg+http://bitbucket.org/barseghyanartur/django_admin_timeline#egg=django_admin_timeline
        * Add `admin_timeline` to your `INSTALLED_APPS` in the global settings.py.
            >>> INSTALLED_APPS = (
            >>> # ...
            >>> 'admin_timeline',
            >>> # ...
            >>> )
        * Collect the static files by running
            $ ./manage.py collectstatic
        * Override app settings in your global settings.py (see the apps.admin_timeline.defaults for the list of settings). As for now, most important of those is `NUMBER_OF_ENTRIES_PER_PAGE` - number of entries displayer per page (for both non-AJAX and AJAX requests).
        * Add the following lines to the global urls.py file.
            >>> # Admin timeline URLs
            >>> (r'^admin/timeline/', include('admin_timeline.urls')),
        
        Usage
        -----------------
        After following all installation steps, you should  be able to access the admin-timeline by
        http://127.0.0.1:8000/admin/timeline/
        
        Sample image https://bitbucket.org/barseghyanartur/django-admin-timeline/raw/cadd4f0a61dccee63588482309d39b7d08a1d481/images/admin_timeline.png
        
        Author
        -----------------
        Artur Barseghyan <artur.barseghyan@gmail.com>
        
Keywords: django-admin-timeline,django,app,python
Platform: UNKNOWN
Classifier: Framework :: Django
Classifier: Programming Language :: Python
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
