I need to create a HOME page with multiple components, like • News •
Products • Forum Topic • Ads and so on.
The little knowledge that i have accumulated on Django forced me to
start using the templates, because I didn't find small, reusable and
largely independent components creation support in Django that could
render itself. Or even simple web-controls that could be managed and
extend from python code for example how can I create my Calendar
control and more important how can I extend it.
Due to my limited study so far, I started to slice the home page into
multiple templates derived from the base.html; and put some views
function for each derived template.
Now I am puzzled that when a user hits the home page then, HOW should
I start the sequence of the components loading one by one in a view
function. how should I organize the code.
-- Waqar