bruth / django-tracking2

django-tracking2 tracks the length of time visitors and registered users spend on your site. Although this will work for websites, this is more applicable to web _applications_ with registered users. This does not replace (nor intend) to replace client-side analytics which is great for understanding aggregate flow of page views.
BSD 2-Clause "Simplified" License
205 stars 67 forks source link

where is base.html #8

Closed tocer closed 12 years ago

tocer commented 12 years ago

templates/tracking/dashboard.html extends "base.html", but wher is it?

bruth commented 12 years ago

That is the template that you supply in your project. It is a conventional name for the base template where the <html>, <head>, and <body> markup lives. You can of course override the template if you want something else.

tocer commented 12 years ago

Ok. Thanks for you reply quickly.