Changes between Version 8 and Version 9 of FullHistory


Ignore:
Timestamp:
Sep 16, 2006, 12:32:06 PM (18 years ago)
Author:
utrebec
Comment:

Added Settings part to "Usage"

Legend:

Unmodified
Added
Removed
Modified
  • FullHistory

    v8 v9  
    4040
    4141== Usage ==
     42How to enable history tracking?
     43=== Settings ===
     44You need to add the following to '''settings.py''':
     45
     46{{{
     47#!python
     48INSTALLED_APPS = (
     49    'django.contrib.history',
     50)
     51}}}
    4252=== Models ===
    43 How to enable history tracking?
    4453Enabling history tracking for a particular model is just like adding Admin functionality - add an inner class as shown below:
    4554
Back to Top