/templates/page/list_published.mako

https://bitbucket.org/cistrome/cistrome-harvard/ · Mako · 34 lines · 27 code · 6 blank · 1 comment · 5 complexity · ad6c0bfebd4856fcbb582b50148571eb 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 Pages
  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. ## <iframe name="galaxy_main" id="galaxy_main" frameborder="0" style="position: absolute; width: 100%; height: 100%;" src="${h.url_for( controller="page", action="list" )}"> </iframe>
  23. <div style="overflow: auto; height: 100%;">
  24. <div class="page-container" style="padding: 10px;">
  25. ${h.to_unicode( grid )}
  26. </div>
  27. </div>
  28. </%def>