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 Workflows |
---|
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 | <div style="overflow: auto; height: 100%;"> |
---|
28 | <div class="page-container" style="padding: 10px;"> |
---|
29 | ${h.to_unicode( grid )} |
---|
30 | </div> |
---|
31 | </div> |
---|
32 | |
---|
33 | |
---|
34 | </%def> |
---|