{ "info": { "author": "Alisue", "author_email": "lambdalisue@hashnote.net", "bugtrack_url": null, "classifiers": [ "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP" ], "description": "``django-modify-history`` is a library to create object modification timeline using Django signal\n\n\nInstall\n===========================================\n::\n\n\tsudo pip install django-modify-history\n\nor::\n\n sudo pip install git+git://github.com/lambdalisue/django-modify-history.git#egg=django-modify-history\n\n\nHow to Use\n==========================================\n\n1. Append ``modify_history`` to ``INSTALLED_APPS``\n2. run ``manage.py syncdb``\n3. Add ``history_site.py`` to the app and write like below::\n\n\t\tfrom modify_history import site\n\t\tfrom modify_history.backends.basic import BasicHistoryBackend\n\n\t\tfrom models import Article\n\n\t\tclass ArticleBackend(BasicHistoryBackend):\n\t\t\tpass\n\t\tsite.register(Article, ArticleBackend)\n\n4. Use ``get_history_timelines`` template tags for get history list like below::\n\n\t\t{% extends 'base.html' %}\n\t\t{% load historytags %}\n\n\t\t{% block content %}\n\t\t