Sha256: afc77874800ff3d086bd7420b8295ea70509988e9cfc418cca7500c86c4a87ab
Contents?: true
Size: 1.22 KB
Versions: 3
Compression:
Stored size: 1.22 KB
Contents
<div class="table-responsive"> <table class="table table-striped table-bordered table-hover table-header-fixed"> <thead> <tr> <th>Business Name</th> <th>Contact Name</th> <th>Phone Number</th> <th>Email</th> <th>Website</th> </tr> </thead> <tbody> <% @directory_listings.each do |directory_listings| %> <tr> <td class="highlight"><%= link_to directory_listings.business.mbcompanyname, directory_category_listing_path(directory_listings.category, directory_listings) %></td> <td class="highlight"><%= link_to directory_listings.business.mbcontactname, directory_category_listing_path(directory_listings.category, directory_listings) %></td> <td class="highlight"><%= link_to directory_listings.business.mbphone, directory_category_listing_path(directory_listings.category, directory_listings) %></td> <td class="highlight"><%= link_to directory_listings.business.mbcontactemail, directory_category_listing_path(directory_listings.category, directory_listings) %></td> <td class="highlight"><%= link_to directory_listings.business.mbwebsite, directory_category_listing_path(directory_listings.category, directory_listings) %></td> </tr> <% end %> </tbody> </table> </div>
Version data entries
3 entries across 3 versions & 1 rubygems