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