Sha256: 1f7d5222ee2b509a4526b17ebba623fb68c7b658b97e2d64e337fbbef26fe45d

Contents?: true

Size: 999 Bytes

Versions: 2

Compression:

Stored size: 999 Bytes

Contents

<div class="table-responsive">
	<table class="table table-striped table-bordered table-hover">
		<thead>
			<tr>
				<th>Address Line 1</th>
				<th>City</th>
				<th>Province</th>
				<th>Type</th>
			</tr>
		</thead>
		<tbody>
			<% @member_profile.addresses.each do |members_main_address| %>
			<tr>
				<td><%= members_main_address.address_addressl1 %></td>
				<td><%= members_main_address.address_city %></td>
				<td><%= members_main_address.address_province %></td>
				<td><%= members_main_address.address_type %></td>
			</tr>
			<% end %>
		</tbody>
	</table>
	<%= link_to "See All of " + @member_profile.member_firstname + " " + @member_profile.member_lastname + " Addresses", phcmembers.member_profile_addresses_path(@member_profile), class: "btn btn-primary btn-xs" %>
	<%= link_to "Add a New Address for " + @member_profile.member_firstname + " " + @member_profile.member_lastname, phcmembers.new_member_profile_address_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_addresses_table.html.erb
phcmembers-62.0.0 app/views/phcmembers/member/profiles/components/_profile_addresses_table.html.erb