Re: statistics, reporting, charts for django

2010-04-28 Thread Georg Holzmann
Hallo ! Yes, thanks, I already looked into google-chartwrapper and they work quite nice ! However, I think I will integrate the interactive charts (google visualization) - there are no template tags for it so far, but a python interface exists: http://code.google.com/p/google-visualization-python/

statistics, reporting, charts for django

2010-04-27 Thread Georg Holzmann
Hallo! I want to build an application like google analytics for django ;) : users should be able to log in and see their statistics/charts. So basically it should be somehow like the django-reporting application, but not in the admin section (should be for general users), with additional (Javascri

Re: Rendering only parts of a template

2010-04-16 Thread Georg Holzmann
Okay, I found now the article by Adrian Holovaty: http://www.holovaty.com/writing/django-two-phased-rendering/ He implemented a {% raw %} template tag and everything between {% raw %} and {% endraw %} won't be rendered ... which is quite nice, so I can render part of my template on the server, and

Rendering only parts of a template

2010-04-15 Thread Georg Holzmann
Hallo! I would like to ask, if it is possible to render just a part of a Django template, and if yes how ? In especially I only want to render the localization on the server (everything which is in {% trans "Something to translate" %}), then send the translated django template to the client. Ther