Sha256: 4c04bc4eb84ae1f1252711476d5bf7ae5b95e310d51cae5a2b91c565cc67f7f1

Contents?: true

Size: 1023 Bytes

Versions: 2

Compression:

Stored size: 1023 Bytes

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_companyname %></td>
				<td><%= member_profile_listing.listing_contactname %></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_firstname + " " + @member_profile.member_lastname + " Listings", phcmembers.member_profile_listings_path(@member_profile), class: "btn btn-primary btn-xs" %>
	<%= link_to "Add a New Listing for " + @member_profile.member_firstname + " " + @member_profile.member_lastname, phcmembers.new_member_profile_listing_path(@member_profile), class: "btn btn-purple btn-xs" %>
</div>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
phcmembers-62.1.0 app/views/phcmembers/member/profiles/components/_profile_listings_table.html.erb
phcmembers-62.0.0 app/views/phcmembers/member/profiles/components/_profile_listings_table.html.erb