Usage

To use exo-changelog in a project, add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'exo_changelog.apps.ExoChangelogConfig',
    ...
)

Add exo-changelog’s URL patterns:

from exo_changelog import urls as exo_changelog_urls


urlpatterns = [
    ...
    url(r'^', include(exo_changelog_urls)),
    ...
]