Sha256: 814ad11d04af44ae8033b581147d10d6ef9f4bbd9016bc7014cf766fa5122e29

Contents?: true

Size: 903 Bytes

Versions: 4

Compression:

Stored size: 903 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="icon-tasks"></i>
			<h5><%= @section.name.humanize %>&nbsp;
				<%= link_to content_tag(:i, nil, :class => 'icon-pencil'), edit_section_path(@section), :title => "Editar Seccion" %>
			</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

4 entries across 4 versions & 1 rubygems

Version Path
adminpanel-0.1.1 app/views/adminpanel/sections/show.html.erb
adminpanel-0.1.0cl.2 app/views/adminpanel/sections/show.html.erb
adminpanel-0.1.0cl app/views/adminpanel/sections/show.html.erb
adminpanel-0.1.0 app/views/adminpanel/sections/show.html.erb