Hi
I have an archive of events which I have to display in an academic year style way. ie events in 2008-2009, 2009-2010. I have a view which I have programmatically modified to display the event details in this way by passing parameters via the url ie /meetings/2008/2009 and this works well. What I want to do now is have another view which will generate a list of the links to the 'years' views ie
2008 - 2009 meetings => /meetings/2008/2009
2009 - 2010 meetings => /meetings/2009/2010
So that when events for 2007 - 2008 or 2010 - 2011 are added that the link would added to the examples above. I have seen something similar done with default arguments but I can't find how this was done.
Hope this makes sense. Any ideas?
Thanks
Duncan