It is unclear to me how it is best to access URL-parameters in class-based-views in Django 1.5.
Consider the following:
View:
To access the url parameters in class based views, use self.args or self.kwargs so you would access it by doing self.kwargs['year']
self.args
self.kwargs
self.kwargs['year']