• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

django_reversion.egg-info/H03-May-2022-10374

docs/H17-Feb-2020-1,269538

reversion/H17-Feb-2020-4,0653,283

tests/H17-Feb-2020-1,8841,396

CHANGELOG.rstH A D17-Feb-202023.8 KiB762467

LICENSEH A D17-Feb-20201.5 KiB2822

MANIFEST.inH A D17-Feb-2020242 109

PKG-INFOH A D17-Feb-20204 KiB10374

README.rstH A D17-Feb-20202.6 KiB8254

setup.cfgH A D17-Feb-202096 96

setup.pyH A D17-Feb-20201.6 KiB5446

README.rst

1================
2django-reversion
3================
4
5|PyPI latest| |PyPI Version| |PyPI License| |TravisCI| |Docs|
6
7
8**django-reversion** is an extension to the Django web framework that provides
9version control for model instances.
10
11Requirements
12============
13
14- Python 3.6 or later
15- Django 1.11 or later
16
17Features
18========
19
20-  Roll back to any point in a model instance's history.
21-  Recover deleted model instances.
22-  Simple admin integration.
23
24Documentation
25=============
26
27Check out the latest ``django-reversion`` documentation at `Getting Started <http://django-reversion.readthedocs.io/>`_
28
29
30Issue tracking and source code can be found at the
31`main project website <http://github.com/etianen/django-reversion>`_.
32
33You can keep up to date with the latest announcements by joining the
34`django-reversion discussion group <http://groups.google.com/group/django-reversion>`_.
35
36Upgrading
37=========
38
39Please check the `Changelog <https://github.com/etianen/django-reversion/blob/master/CHANGELOG.rst>`_ before upgrading
40your installation of django-reversion.
41
42Contributing
43============
44
45Bug reports, bug fixes, and new features are always welcome. Please raise issues on the
46`django-reversion project site <http://github.com/etianen/django-reversion>`_, and submit
47pull requests for any new code.
48
491. Fork the `repository <http://github.com/etianen/django-reversion>`_ on GitHub.
502. Make a branch off of master and commit your changes to it.
513. Install requirements.
52
53.. code:: bash
54
55    $ pip install django psycopg2 mysqlclient -e .
56
574. Run the tests
58
59.. code:: bash
60
61    $ tests/manage.py test tests
62
635. Create a Pull Request with your contribution
64
65Contributors
66============
67
68The django-reversion project was developed by `Dave Hall <http://www.etianen.com/>`_ and contributed
69to by `many other people <https://github.com/etianen/django-reversion/graphs/contributors>`_.
70
71
72.. |Docs| image:: https://readthedocs.org/projects/django-reversion/badge/?version=latest
73   :target: http://django-reversion.readthedocs.org/en/latest/?badge=latest
74.. |PyPI Version| image:: https://img.shields.io/pypi/pyversions/django-reversion.svg?maxAge=60
75   :target: https://pypi.python.org/pypi/django-reversion
76.. |PyPI License| image:: https://img.shields.io/pypi/l/django-reversion.svg?maxAge=120
77   :target: https://github.com/rhenter/django-reversion/blob/master/LICENSE
78.. |PyPI latest| image:: https://img.shields.io/pypi/v/django-reversion.svg?maxAge=120
79   :target: https://pypi.python.org/pypi/django-reversion
80.. |TravisCI| image:: https://travis-ci.org/etianen/django-reversion.svg?branch=master
81   :target: https://travis-ci.org/etianen/django-reversion
82