<!-- Title Variables -->
<% phc_title "Member Address Manager" %>
<% phc_title_tagline "Address Index for " + @members_profile_info.mfirstname + " " + @members_profile_info.mlastname %>

<!-- Page Header -->
<div class="row wrapper border-bottom white-bg page-heading">
	<div class="col-sm-4">
		<h2><%= yield(:phc_title) %></h2>
		<!-- Bread Crumb -->
		<ol class="breadcrumb">
			<li><%= link_to "Home", modules_dashboards_index_path %></li>
			<li><%= link_to "Members List", member_profiles_path %></li>
			<li class="active"><%= yield(:phc_title_tagline) %></li>
		</ol>
	</div>
	<div class="col-sm-8">
		<div class="title-action">
			<%= link_to new_member_profile_address_path, class: "btn btn-primary" do %>
				<i class="fa fa-plus"></i> Creat a New Address for <%= @members_profile_info.mfirstname + ' ' + @members_profile_info.mlastname %>
			<% end %>
		</div>
	</div>
</div>

<div class="wrapper wrapper-content animated fadeInRight">

	<!-- Page Content -->
	<div class="row">
		<div class="col-lg-12">

			<div class="ibox float-e-margins">

				<div class="ibox-title">
					<h5><%= yield(:phc_title_tagline) %></h5>
					<div class="ibox-tools">
						<a class="collapse-link">
							<i class="fa fa-chevron-up"></i>
						</a>
						<a class="close-link">
							<i class="fa fa-times"></i>
						</a>
					</div>
				</div>

				<div class="ibox-content">
					<div class="table-responsive">
						<table class="table table-striped table-bordered table-hover dataTables-example">
							<thead>
								<tr>
									<th>Address Line 1</th>
									<th>Address Line 2</th>
									<th>City</th>
									<th>Province</th>
									<th>Country</th>
									<th>PostalCode</th>
									<th>Type</th>
									<th></th>
								</tr>
							</thead>
							<tbody>
								<% @member_addresses.each do |member_address| %>
									<tr>
										<td><%= link_to member_address.mcaddressl1, member_profile_address_path(member_address.profile, member_address) %></td>
										<td><%= link_to member_address.mcaddressl2, member_profile_address_path(member_address.profile, member_address) %></td>
										<td><%= link_to member_address.mccity, member_profile_address_path(member_address.profile, member_address) %></td>
										<td><%= link_to member_address.mcprovince, member_profile_address_path(member_address.profile, member_address) %></td>
										<td><%= link_to member_address.mccountry, member_profile_address_path(member_address.profile, member_address) %></td>
										<td><%= link_to member_address.mcpostalcode, member_profile_address_path(member_address.profile, member_address) %></td>
										<td><%= link_to member_address.mctype, member_profile_address_path(member_address.profile, member_address) %></td>
										<td><%= link_to 'Remove', member_profile_address_path(member_address.profile, member_address), class: "btn btn-danger btn-xs", method: :delete, data: { confirm: 'Are you sure? This will remove listing information and cannot be reversed.' } %></td>
									</tr>
								<% end %>
							</tbody>
						</table>
					</div>
				</div>

			</div>

		</div>
	</div>

</div>