Changes between Version 8 and Version 9 of FullHistory
- Timestamp:
- Sep 16, 2006, 12:32:06 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FullHistory
v8 v9 40 40 41 41 == Usage == 42 How to enable history tracking? 43 === Settings === 44 You need to add the following to '''settings.py''': 45 46 {{{ 47 #!python 48 INSTALLED_APPS = ( 49 'django.contrib.history', 50 ) 51 }}} 42 52 === Models === 43 How to enable history tracking?44 53 Enabling history tracking for a particular model is just like adding Admin functionality - add an inner class as shown below: 45 54