Hi!
I'm relatively new to Django and I'm designing a website that primarily needs usability experience, speaking of optimized CSS, HTML5 and UI stuff.
It's very easy to use Django for data/Model centric design. Just designing a couple of Python classes and ./manage.py syncdb
- there's your Model.
But I'm dealing with a significant amount of View centric challenges. (Different user classes, different tasks, different design challenges.)
The official Django tutorial cursorily goes through using a "Template".
Is there any Design centric guide for Django, or a set of Templates that are ready and useable? I don't want to start from scratch using JS, HTML5, Ajax and everything. From the Model layer perspective Django is very rapid and delivering a working base system. I wonder whether there's something like that for the Views.