Sha256: 55844dcb6184bcc1e32bf74a7b221b1b00eb93d0cb78ce3502fcd0e435d2517b

Contents?: true

Size: 1.61 KB

Versions: 10

Compression:

Stored size: 1.61 KB

Contents

<div class="table-responsive"> 
	<table class="table table-hover members-table middle-align">
	  <thead> 
			<tr> 
				<th style="text-align: center;width:5%">#</th> 
				<th style="text-align: center;width:100px"><i class="fa fa-photo"></i></th> 
				<th style="width:200px">Section Type</th>
				<th>Section Title</th>
				<th style="width:100px;" class="hidden-sm hidden-xs">Status</th>
				<% if display_manage_links? %>
				<th style="text-align: center;" colspan="2" class="hidden-sm hidden-xs">Actions</th>
				<% end %>
			</tr> 
		</thead>
	  <tbody>
	  	<tr id="tr_section_0"></tr>
	  	<% @sections.each_with_index do |section, i| %>
	  		
	  		<tr id="tr_section_<%= section.id %>">

					<th scope="row" style="text-align: center;">
						<%= serial_number(i) %>
					</th>

					<td class="display-image">
						<%= display_thumbnail_small(section) %>
					</td>

					<td class="display-link"><%= link_to section.section_type, section_path(section), remote: true %></td>

					<td class="display-link"><%= link_to section.title, section_path(section), remote: true %></td>

					<td class="hidden-sm hidden-xs"><%= display_publishable_status(section) %></td>

		      <% if display_manage_links? %>
			    <td class="action-links hidden-sm hidden-xs" style="width:10%"><%= display_publishable_links(section) %></td>

			    <td class="action-links hidden-sm hidden-xs" style="width:10%">
			      <%= display_manage_links(section, @current_user) %>
			    </td>
			    <% end %>

		    </tr>
		  <% end %>
	  </tbody>
	</table>
</div>

<div class="row">
  <div class="col-sm-12">
    <%= paginate_kuppayam(@sections) %>
  </div>
</div>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
dhatu-0.1.9 app/views/dhatu/sections/_index.html.erb
dhatu-0.1.8 app/views/dhatu/sections/_index.html.erb
dhatu-0.1.7 app/views/dhatu/sections/_index.html.erb
dhatu-0.1.6 app/views/dhatu/sections/_index.html.erb
dhatu-0.1.5 app/views/dhatu/sections/_index.html.erb
dhatu-0.1.4 app/views/dhatu/sections/_index.html.erb
dhatu-0.1.3 app/views/dhatu/sections/_index.html.erb
dhatu-0.1.2 app/views/dhatu/sections/_index.html.erb
dhatu-0.1.1 app/views/dhatu/sections/_index.html.erb
dhatu-0.1.0 app/views/dhatu/sections/_index.html.erb