Skip to content

A small app to ensure your users re-agree to Terms of Service changes

License

Notifications You must be signed in to change notification settings

krachwal/django-tos

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-tos

This project gives the admin the ability to reset terms of agreement with the end users. It tracks when TOS are changed and when users agree to the new TOS.

Summary

  • keeps track of when TOS is changed
  • Users need to be informed and agree/re-agree when they login (custom login is provided)
  • Just two models (TOS and user agreement)

Installation

  1. Add tos to your INSTALLED_APPS setting.
  2. Run the command manage.py syncdb.
  3. In your root urlconf file urls.py add:

    # terms of service links
    urlpatterns += patterns('',
        (r'^login/$', 'tos.views.login', {}, 'login',),
        (r'^terms-of-service/', include('tos.urls')),
    )

About

A small app to ensure your users re-agree to Terms of Service changes

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published