The client code is concentrated into one views.py file and it should be split up in the same way that the server code is - one view for each object being dealt with, though objects in this case would be pages separated by content. So the code for user's own timeline would be in the same file as the code for each friend's timeline.
The client code is concentrated into one
views.py
file and it should be split up in the same way that the server code is - one view for each object being dealt with, though objects in this case would be pages separated by content. So the code for user's own timeline would be in the same file as the code for each friend's timeline.