[hg] galaxy 2862: Increase number of datasets/page on HDA grid.
details: http://www.bx.psu.edu/hg/galaxy/rev/205a6782d9ae changeset: 2862:205a6782d9ae user: jeremy goecks <jeremy.goecks at emory.edu> date: Fri Oct 09 14:47:54 2009 -0400 description: Increase number of datasets/page on HDA grid. 1 file(s) affected in this change: lib/galaxy/web/controllers/dataset.py diffs (21 lines): diff -r c7dd346c20d5 -r 205a6782d9ae lib/galaxy/web/controllers/dataset.py --- a/lib/galaxy/web/controllers/dataset.py Thu Oct 08 22:01:36 2009 -0400 +++ b/lib/galaxy/web/controllers/dataset.py Fri Oct 09 14:47:54 2009 -0400 @@ -107,7 +107,7 @@ return accepted_filters # Grid definition - title = "Stored datasets" + title = "Stored Datasets" model_class = model.HistoryDatasetAssociation template='/dataset/grid.mako' default_sort_key = "-create_time" @@ -125,7 +125,7 @@ default_filter = dict( deleted="False", tags="All" ) preserve_state = False use_paging = True - num_rows_per_page = 10 + num_rows_per_page = 50 def apply_default_filter( self, trans, query, **kwargs ): # This is a somewhat obtuse way to join the History and HDA tables. However, it's necessary # because the initial query in build_initial_query is specificied on the HDA table (this is reasonable)
participants (1)
-
Greg Von Kuster