Sha256: cbb0cdc6463a6f908938c70620769045f5c0af56d1e42883938cd118880de010

Contents?: true

Size: 924 Bytes

Versions: 10

Compression:

Stored size: 924 Bytes

Contents

<% provide(:page_title, @section.name.humanize) %>
<% breadcrumb_add('Secciones', sections_path) %>

<div class="row-fluid">
  <div class="widget widget-padding span12">
    <div class="widget-header">
      <i class="fa fa-tasks"></i>
      <h5><%= @section.name.humanize %>&nbsp;
        <%= render 'shared/edit_icon_button', resource: @section, resource_name: @model.display_name %>
      </h5>
    </div>
    <div class="widget-body row-fluid">

      <div class="span2">
        <b>DescripciĆ³n</b>
      </div>
      <div class="span10">
            <% if @section.description.nil? %>
            	<%= t("other.no description") %>
            <% else %>
          <%= @section.description.html_safe %>
            <% end %>
      </div>
      <div class="span12">
        <% @section.images.each do |image|-%>
          <%= image_tag(image.file_url :thumb) %>
        <% end %>
      </div>
    </div>
  </div>
</div>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
adminpanel-2.2.5 app/views/adminpanel/sections/show.html.erb
adminpanel-2.2.4 app/views/adminpanel/sections/show.html.erb
adminpanel-2.2.3 app/views/adminpanel/sections/show.html.erb
adminpanel-2.2.2 app/views/adminpanel/sections/show.html.erb
adminpanel-2.2.1 app/views/adminpanel/sections/show.html.erb
adminpanel-2.2.0 app/views/adminpanel/sections/show.html.erb
adminpanel-2.1.7 app/views/adminpanel/sections/show.html.erb
adminpanel-2.1.6 app/views/adminpanel/sections/show.html.erb
adminpanel-2.1.5 app/views/adminpanel/sections/show.html.erb
adminpanel-2.1.3 app/views/adminpanel/sections/show.html.erb