.container.bg_light .row .col-md-12 .page_header %h1 #{t('admin.actions.show.title')} .hr .row .col-md-12 .breadcrumb .row .col-md-12 %ul.nav.nav-tabs %li.nav-item = link_to '', class: 'nav-link active', method: :get do %i.fa.fa-info-circle = t('admin.actions.show.menu').capitalize .row .col-md-12 .tab-content.list .tab-pane.fade.show.active .show_container %h4 Informações básicas %dl %dt %span.label.label-info.name_field.string_type #{t('activerecord.attributes.content.title').titleize} %dd.well= @content.title %dt %span.label.label-info.name_field.string_type #{t('activerecord.attributes.content.title_summary').titleize} %dd.well= @content.title_summary %dt %span.label.label-info.name_field.string_type #{t('activerecord.attributes.content.content').titleize} %dd.well= raw @content.content %dt %span.label.label-info.name_field.string_type #{t('activerecord.attributes.project.publish_date').titleize} %dd.well= raw @content.publish_date %dt %span.label.label-info.name_field.string_type #{t('activerecord.attributes.content.sections').titleize} - @content.sections.each do |sec| %dd.well= sec.name %dt %span.label.label-info.name_field.string_type #{t('activerecord.attributes.content.image').titleize} %dd.well= image_tag(@content.image.url) if @content.image.present? - if @content.extra_info? = render "#{content_type.pluralize}/#{content_type}_show_info", content: @content