commit/galaxy-central: dan: Show dataset size of non-purged error state history items.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/b0967259b290/ changeset: b0967259b290 user: dan date: 2011-10-25 19:58:08 summary: Show dataset size of non-purged error state history items. affected #: 1 file diff -r 4d1e525e1594a63221c099c5f84ca5765775533b -r b0967259b2905e58bc0e75ba8ada7a0cd8974b7d templates/root/history_common.mako --- a/templates/root/history_common.mako +++ b/templates/root/history_common.mako @@ -96,7 +96,7 @@ display_url = h.url_for( controller='dataset', action='display', dataset_id=dataset_id, preview=True, filename='' ) %> %if data.purged: - <span class="icon-button display_disabled tooltip" title="Cannoy display datasets removed from disk"></span> + <span class="icon-button display_disabled tooltip" title="Cannot display datasets removed from disk"></span> %else: <a class="icon-button display tooltip" title="Display data in browser" href="${display_url}" %if for_editing: @@ -150,6 +150,9 @@ %endif </div> %elif data_state == "error": + %if not data.purged: + <div>${data.get_size( nice_size=True )}</div> + %endif <div> An error occurred running this job: <i>${data.display_info().strip()}</i></div> 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