Sha256: 8257f08b0e3ad81ffb31cc3120b9221b3039c9e75cbba29e5d2399cbba4493d1

Contents?: true

Size: 1.74 KB

Versions: 4

Compression:

Stored size: 1.74 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>Offer Title</th>
				<th>Offer Text</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_offer_0"></tr>
	  	<% @offers.each_with_index do |offer, i| %>
	  		<tr id="tr_offer_<%= offer.id %>">

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

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

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

					<td class="display-link"><%= link_to offer.offer_text, offer_path(offer), remote: true %></td>

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

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

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

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

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

Version data entries

4 entries across 4 versions & 1 rubygems

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