Sha256: 26277d3de1433f9043da8936429e1542e03fbf1fe9398988b0ed0c79d13866c1
Contents?: true
Size: 1.06 KB
Versions: 19
Compression:
Stored size: 1.06 KB
Contents
<div class="table-responsive"> <table class="table table-striped table-bordered table-hover"> <thead> <tr> <th>Company Name</th> <th>Conact Name</th> <th>City</th> <th>Business Phone</th> </tr> </thead> <tbody> <% @member_profile.listings.each do |member_profile_listing| %> <tr> <td><%= member_profile_listing.listing_company_name %></td> <td><%= member_profile_listing.listing_contact_name %></td> <td><%= member_profile_listing.listing_city %></td> <td><%= member_profile_listing.listing_phone %></td> </tr> <% end %> </tbody> </table> <%= link_to "See All of " + @member_profile.member_profile_first_name + " " + @member_profile.member_profile_last_name + " Listings", phcdevworks_members.member_profile_listings_path(@member_profile), class: "btn btn-primary btn-xs" %> <%= link_to "Add a New Listing for " + @member_profile.member_profile_first_name + " " + @member_profile.member_profile_last_name, phcdevworks_members.new_member_profile_listing_path(@member_profile), class: "btn btn-purple btn-xs" %> </div>
Version data entries
19 entries across 19 versions & 1 rubygems