django-readonly

Put website in read-only mode for maintenance.


Keywords
django, readonly
License
BSD-3-Clause
Install
pip install django-readonly==0.1.1

Documentation

Django-Readonly

Latest PyPI version Number of PyPI downloads

Put your website into read-only mode for maintanance. It blocks any POST requests and signs users out. It doesn't lock any database transactions (check out https://github.com/streeter/django-db-readonly for that).

Usage

  • pip install django-readonly
  • settings.py: add 'readonly.middleware.ReadOnlyMiddleware', to MIDDLEWARE_CLASSES
  • settings.py: READ_ONLY = True
  • template: {% if request.read_only %}<p>Website is currently in read-only mode.</p>{% endif %}