A small app to ensure your users re-agree to Terms of Service changes
Find a file
Frank Wiles abb2043759 PEP8
2014-05-07 08:48:16 -05:00
tos PEP8 2014-05-07 08:48:16 -05:00
.gitignore Changing .gitignore 2010-11-16 12:20:15 -06:00
__init__.py first commit 2010-06-18 11:17:07 -05:00
AUTHORS.txt Updating AUTHORS file. 2010-11-16 12:21:05 -06:00
LICENSE.txt Fixing license oops 2012-11-18 08:27:22 -06:00
README.rst Fixing setup mistake 2010-06-21 09:49:26 -05:00
requirements.txt Adding requirements for Travis 2014-05-07 08:48:09 -05:00
setup.py setup.py fix 2010-12-22 14:39:11 -06:00

==========
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')),
     )