Skip to content

Instantly share code, notes, and snippets.

@naveedtariq
Created May 12, 2016 14:29
Show Gist options
  • Save naveedtariq/d46da378f33211043f1f61b3a448e22b to your computer and use it in GitHub Desktop.
Save naveedtariq/d46da378f33211043f1f61b3a448e22b to your computer and use it in GitHub Desktop.
<div class="col-md-2"></div>
<div class="col-md-8">
<p id="notice"><%= notice %></p>
<h3>Discount Deals</h3>
<%= render 'users/form' %>
<table class="table table-hover table-bordered" id="table_deals">
<thead>
<tr>
<th>Service</th>
<th>Price</th>
<th>Category</th>
<th>Franchise</th>
<th>Address</th>
</tr>
</thead>
<tbody id="table_deals_body">
<% if !@discount_deals.present? %>
<tr>
<td><p><b>Not Available.</b></p></td>
</tr>
<% end %>
<% @discount_deals.each do |discount_deal| %>
<tr>
<td><%= discount_deal.offered_service.name %></td>
<td><%= discount_deal.offered_service.price %></td>
<td><%= discount_deal.offered_service.category.name %></td>
<td><%= discount_deal.franchise.name %></td>
<% if discount_deal.franchise.address.present? %>
<td>
<%= discount_deal.franchise.address.line1 %>
<%= discount_deal.franchise.address.line2 %>
<%= discount_deal.franchise.address.city.name %>
<%= discount_deal.franchise.address.country.name %>
</td>
<% else %>
<td align="center" class="col-md-1">Empty</td>
<% end %>
</tr>
<% end %>
</tbody>
</table>
</div>
<div class="col-md-2"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment