Sha256: 0a5e283cb7df1202eb6605697d86579c8da6e82db506f81436b5287522abe3d9

Contents?: true

Size: 1005 Bytes

Versions: 4

Compression:

Stored size: 1005 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", phcmemberspro.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, phcmemberspro.new_member_profile_address_path(@member_profile), class: "btn btn-purple btn-xs" %>
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
phcmemberspro-86.0.0 app/views/phcmemberspro/member/profiles/components/_profile_addresses_table.html.erb
phcmemberspro-85.0.0 app/views/phcmemberspro/member/profiles/components/_profile_addresses_table.html.erb
phcmemberspro-84.1.0 app/views/phcmemberspro/member/profiles/components/_profile_addresses_table.html.erb
phcmemberspro-84.0.0 app/views/phcmemberspro/member/profiles/components/_profile_addresses_table.html.erb