commit/galaxy-central: greg: Change column Uploaded By to be the Data type of the library dataset when browsing a data library. Fixes issue #597.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/28ffb6286b12/ changeset: 28ffb6286b12 user: greg date: 2011-12-02 21:19:37 summary: Change column Uploaded By to be the Data type of the library dataset when browsing a data library. Fixes issue #597. affected #: 1 file diff -r 954f201a772e82039ec80802f9bca78d8903cd8a -r 28ffb6286b1226d8c7757e33bb7790eaa08ae29d templates/library/common/browse_library.mako --- a/templates/library/common/browse_library.mako +++ b/templates/library/common/browse_library.mako @@ -218,10 +218,6 @@ is_admin = trans.user_is_admin() and cntrller == 'library_admin' - if ldda.user: - uploaded_by = ldda.user.email - else: - uploaded_by = 'anonymous' if ldda == library_dataset.library_dataset_dataset_association: current_version = True if is_admin: @@ -303,7 +299,7 @@ </td> % if not simple: <td id="libraryItemInfo">${render_library_item_info( ldda )}</td> - <td>${uploaded_by}</td> + <td>${ldda.extension}</td> % endif <td>${ldda.create_time.strftime( "%Y-%m-%d" )}</td><td>${ldda.get_size( nice_size=True )}</td> @@ -579,10 +575,10 @@ </th> % if not simple: <th>Message</th> - <th>Uploaded By</th> + <th>Data type</th> % endif - <th>Date</th> - <th>File Size</th> + <th>Date uploaded</th> + <th>File size</th></tr></thead><% row_counter = RowCounter() %> Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
Bitbucket