Sha256: 66e10c1dfbebf8dd280b082886e8e8331c5fc8c4acd71729009ff8e35a31146e

Contents?: true

Size: 1.48 KB

Versions: 1

Compression:

Stored size: 1.48 KB

Contents

<div class="table-responsive">
	<table class="table table-striped table-bordered table-hover">
		<thead class="thead-inverse">
			<tr>
				<th>Company Name</th>
				<th>Conact Name</th>
				<th>City</th>
				<th>Province</th>
				<th>Country</th>
				<th>Listing Phone</th>
				<th>Listing Website</th>
				<th></th>
			</tr>
		</thead>
		<tbody>
			<tr>
				<td><%= link_to @member_listing.listing_company_name, phcmembers.edit_member_profile_listing_path %></td>
				<td><%= link_to @member_listing.listing_contact_name, phcmembers.edit_member_profile_listing_path %></td>
				<td><%= link_to @member_listing.listing_city, phcmembers.edit_member_profile_listing_path %></td>
				<td><%= link_to @member_listing.listing_province, phcmembers.edit_member_profile_listing_path %></td>
				<td><%= link_to @member_listing.listing_country, phcmembers.edit_member_profile_listing_path %></td>
				<td><%= link_to @member_listing.listing_phone, phcmembers.edit_member_profile_listing_path %></td>
				<td><%= link_to @member_listing.listing_website, phcmembers.edit_member_profile_listing_path %></td>
				<td>
					<div class="btn-group d-flex" role="group">
						<%= link_to 'Update', edit_member_profile_listing_path, class: "btn btn-purple btn-xs" %>
						<%= link_to 'Remove', member_profile_listing_path, class: "btn btn-danger btn-xs", method: :delete, data: { confirm: 'Are you sure? This will remove listing information and cannot be reversed.' } %>
					</div>
				</td>
			</tr>
		</tbody>
	</table>
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
phcmembers-63.0.0 app/views/phcmembers/member/listings/components/_listing_table.html.erb