about-py

Makes a webpage available with information about the projects last version control system commits and the python interpreter and used python libraries.


Install
pip install about-py==0.0.3

Documentation

about-py

Django about plugin

Makes a webpage available with information about the projects last version control system commits and the python interpreter and used python libraries.

How to use

  1. pip install about-py
  2. add about-py to your Django INSTALLED_APPS:
INSTALLED_APPS = [
      ...,
      about-py,
      ...,
   ]
  1. Create an url entry with the AboutView. e.g.

      url(r'^about/', AboutView.as_view()),
  

Or use the secure SecureAboutView so only staff and super users can access the page.