public
Description: A Django app for embedding Webalizer reports into the admin
Homepage: http://github.com/arneb/django-webalizer/
Clone URL: git://github.com/arneb/django-webalizer.git
arneb (author)
Mon Oct 06 05:23:28 -0700 2008
commit  31f0f551d73fa393ca0facadade8a7e636b739dd
tree    5b47f7f04dd091fa411639db5b18ba6005d9a4cc
parent  e2e87e21026b65aae5a5a1b2be1ea5e70d319e2a
name age message
file README.rst Loading commit data...
directory webalizer/
README.rst

A Django app for embedding Webalizer reports into the admin interface

django-webalizer is a very simple app which let's developers embed Webalizer statistics into the admin interface of a django project.

From the Webalizer Webpage:

The Webalizer is a fast, free web server log file analysis program. It produces highly detailed, easily configurable usage reports in HTML format, for viewing with a standard web browser.

Install Instructions

Just add the webalizer directory to your Python-Path. Add 'webalizer' to settings.INSTALLED_APPS and add an entry similar to the following one, to your url-conf (before the include admin.site.root entry):

url(r'^admin/webalizer/', include('webalizer.urls')),