GitXplorerGitXplorer
l

django-changelog

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
42dcfc2574dc74bfbf694bef28ea7d35475ba2c0

Add utils

llyndsysimon committed 8 years ago
Unverified
b8751d1b754f1bd1f7520e00aee671de7f660bc3

Change param order for `ChangeSet`

llyndsysimon committed 8 years ago
Unverified
09067a09ecc325567c99df47fc7cee669ee4e5c6

Refactor tests into separate files

llyndsysimon committed 8 years ago
Unverified
aa5e0681c4458a05e14545d6435ac4861de7fa57

`ChangeSet.iter_logs()` now works if no logs exist

llyndsysimon committed 8 years ago
Unverified
319ff3ebe322256ddb8f4800853f167aa8b325d3

Add field `ChangeLog.log_type`

llyndsysimon committed 9 years ago
Unverified
78c6dca0ce55e1227cd5811543b4b98bb87de011

Add `.diff` and `.iter_logs()` to `ChangeSet`

llyndsysimon committed 9 years ago

README

The README file for this repository.

========= Changelog

Django-changelog is a simple app that automates the creation of log entries when Django models changes.

Quick Start

  1. Add 'changelog' to your INSTALLED_APPS in settings.

  2. Add CHANGELOG_TRACKED_FIELDS to your settings::

    CHANGELOG_TRACKED_FIELDS = { 'myapp.MyModel': ( 'first_field_to_track', 'second_field_to_track', ), }

  3. Run ./manage.py migrate to create the required tables.