View centric design with Django

Posted by wishi_ on Stack Overflow See other posts from Stack Overflow or by wishi_
Published on 2010-06-06T10:18:42Z Indexed on 2010/06/06 10:22 UTC
Read the original article Hit count: 378

Filed under:
|
|

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.

© Stack Overflow or respective owner

Related posts about django

Related posts about design