Advertise filters param in discovery doc.
[arvados.git] / apps / workbench / app / views / application / show.html.erb
1 <% content_for :page_title do %>
2   <%= (@object.respond_to?(:properties) ? @object.properties[:page_title] : nil) ||
3         @object.friendly_link_name %>
4 <% end %>
5
6 <% content_for :content_top do %>
7
8 <% if @object.respond_to? :properties %>
9   <% if @object.properties[:page_content] %>
10     <% content_for :page_content do %>
11       <h1>
12         <%= render_content_from_database(@object.properties[:page_title] || @object.uuid) %>
13       </h1>
14       
15       <% if @object.properties[:page_subtitle] %>
16         <h4>
17           <%= render_content_from_database @object.properties[:page_subtitle] %>
18         </h4>
19       <% end %>
20
21       <%= render_content_from_database @object.properties[:page_content] %>
22     <% end %>
23   <% end %>
24 <% end %>
25
26 <% end %>
27
28 <%= render partial: 'content', layout: 'content_layout', locals: {pane_list: controller.show_pane_list }%>
29