Sha256: 302f3458da941aa6c15f42e4ac5683609f61f2267637f69f5f8f726e21f356be

Contents?: true

Size: 1.84 KB

Versions: 5

Compression:

Stored size: 1.84 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>Title</th>
				<th>Short Description</th>
				<th style="width:100px;" class="hidden-sm hidden-xs">Featured</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_promotion_0"></tr>
	  	<% @promotions.each_with_index do |promotion, i| %>
	  		<tr id="tr_promotion_<%= promotion.id %>">

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

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

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

					<td class="display-link"><%= link_to truncate(promotion.short_description, length: 40), promotion_path(promotion), remote: true %></td>

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

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

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

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

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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
dhatu-0.1.16 app/views/dhatu/promotions/_index.html.erb
dhatu-0.1.15 app/views/dhatu/promotions/_index.html.erb
dhatu-0.1.14 app/views/dhatu/promotions/_index.html.erb
dhatu-0.1.13 app/views/dhatu/promotions/_index.html.erb
dhatu-0.1.12 app/views/dhatu/promotions/_index.html.erb