/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
- <%inherit file="/webapps/galaxy/base_panels.mako"/>
- <%def name="init()">
- <%
- self.has_left_panel=False
- self.has_right_panel=False
- self.active_view="shared"
- self.message_box_visible=False
- %>
- </%def>
- <%def name="title()">
- Galaxy / Cistrome | Published Pages
- </%def>
- <%def name="stylesheets()">
- ${parent.stylesheets()}
- <style>
- .grid td {
- min-width: 100px;
- }
- </style>
- </%def>
- <%def name="center_panel()">
- ## <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>
- <div style="overflow: auto; height: 100%;">
- <div class="page-container" style="padding: 10px;">
- ${h.to_unicode( grid )}
- </div>
- </div>
- </%def>