Sha256: 1da0ac28f29a2e6d4a63dde0ec9d5fe7b39ad2f95bcd7f66119cd328a599503f

Contents?: true

Size: 1.88 KB

Versions: 25

Compression:

Stored size: 1.88 KB

Contents

<!-- Title System -->
<% phc_title "PHCMembers - Member Addresses" %>
<% phc_title_tagline "Address Index for " + @members_main.mfirstname + " " + @members_main.mlastname %>

<div class="page-bar">

	<!-- Bread Crumb -->
	<ul class="page-breadcrumb">
		<li><%= link_to "Home", members_root_path %><i class="fa fa-circle"></i></li>
		<li><%= link_to "Members List", members_mains_path %><i class="fa fa-circle"></i></li>
		<li class="active"><%= @members_main.mfirstname + ' ' + @members_main.mlastname %> Address Index</li>
	</ul>

</div>

<!-- Page Title -->
<h3 class="page-title">
	<%= yield(:phc_title) %> </br>
	<small><%= yield(:phc_title_tagline) %></small>
</h3>

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

		<div class="portlet box blue-chambray bordered">
			<div class="portlet-title">
				<div class="caption">
					<span class="caption-subject bold uppercase"><%= @members_main.mfirstname + ' ' + @members_main.mlastname %> Address Index</span>
				</div>
			</div>
			<div class="portlet-body">
				<div class="table-responsive">
					<table class="table table-striped table-bordered table-hover table-header-fixed">
						<thead>
							<tr>
								<th>Full Name</th>
								<th>Company Name</th>
								<th>City</th>
								<th>Province</th>
								<th>Country</th>
								<th></th>
							</tr>
						</thead>
						<tbody>
							<% @members_contact.each do |members_contact| %>
								<tr>
									<td><%= members_contact.mccontactname %></td>
									<td><%= members_contact.mccompanyname %></td>
									<td><%= members_contact.mccity %></td>
									<td><%= members_contact.mcprovince %></td>
									<td><%= members_contact.mccountry %></td>
									<td></td>
								</tr>
							<% end %>
						</tbody>
					</table>
				</div>
				<%= link_to 'Add a Private Address', new_members_main_contact_path, class: "btn blue-hoki" %>
			</div>
		</div>

	</div>
</div>

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
phcmemberspro-5.0.0 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-4.11.2 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-4.11.1 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-4.11.0 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-4.10.10 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-4.10.9 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-4.10.8 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-4.10.7 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-4.10.6 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-4.10.5 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-4.10.4 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-4.10.3 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-4.10.2 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-4.10.1 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-4.10.0 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-4.9.9 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-4.9.8 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-4.9.7 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-4.9.6 app/views/phcmemberspro/members/contacts/index.html.erb
phcmemberspro-4.9.5 app/views/phcmemberspro/members/contacts/index.html.erb