--- ECHO_content/ECHO_collection.py 2004/05/06 13:12:07 1.55 +++ ECHO_content/ECHO_collection.py 2004/05/06 13:29:45 1.56 @@ -945,11 +945,13 @@ class ECHO_group(ECHO_collection): if 'index.html' in self.__dict__.keys(): return getattr(self,'index.html')() - + elif 'overview' in self.__dict__.keys(): - return self.showOverview() + return self.showOverview() elif hasattr(self,'group_index_template'): - return self.group_index_template() + return self.group_index_template() + elif hasattr(self,'collection_index_template'): + return self.collection_index_template() elif hasattr(self,'main_index_template'): return self.main_index_template()