I looking to build a news archive in python/django, I have no idea where to start with it though. I need the view to pull out all the news articles with I have done I then need to divide them in months and years so e.g.
Sept 09
Oct 09
I then need in the view to some every time a new news article is created for a new month it needs to output the new month, so if a news article was written in November the archive would then be,
Sept 09
Oct 09
Nov 09
Any one help?
An excellent place to start is the book Practical Django Projects by James Bennett. Among other things, it guides you through the development of a web blog with multiple time-based views (by month, etc) that should serve you well as the basis for your application.