show.html.haml revision 3825216d42d9a877220e05c0070f72ac1f3c42aa
- lh = LogicViewhelper.new(resource)
%h2= link_to resource, resource, 'data-type' => resource_class
%p.definedBy
%h5 Defined by:
= resource.defined_by
%p.standardStatus
%h5 Standardization-status:
= resource.standardization_status
%p.description
%h5 Description
= simple_format resource.description
%nav
%ul.nav.nav-tabs
- lh.available_tabs.each do |(tab_title, tab, number)|
%li{class: tab==@tab ? 'active' : nil}
= link_to logic_path(resource, tab: tab) do
= tab_title
- if number
%span.badge= number
- lh.available_tab_links.each do |(tab_title, tab)|
%li{class: tab==@link_tab ? 'active' : nil}
= link_to tab_title, [resource, tab]
= render partial: @tab.to_s unless @tab.nil?