/templates/workflow/list_published.mako

https://bitbucket.org/cistrome/cistrome-harvard/ · Mako · 34 lines · 27 code · 7 blank · 0 comment · 5 complexity · 282d33d420d6330cf74f22be17f64676 MD5 · raw file

  1. <%inherit file="/webapps/galaxy/base_panels.mako"/>
  2. <%def name="init()">
  3. <%
  4. self.has_left_panel=False
  5. self.has_right_panel=False
  6. self.active_view="shared"
  7. self.message_box_visible=False
  8. %>
  9. </%def>
  10. <%def name="title()">
  11. Galaxy / Cistrome | Published Workflows
  12. </%def>
  13. <%def name="stylesheets()">
  14. ${parent.stylesheets()}
  15. <style>
  16. .grid td {
  17. min-width: 100px;
  18. }
  19. </style>
  20. </%def>
  21. <%def name="center_panel()">
  22. <div style="overflow: auto; height: 100%;">
  23. <div class="page-container" style="padding: 10px;">
  24. ${h.to_unicode( grid )}
  25. </div>
  26. </div>
  27. </%def>