Sha256: 71e8b6c4353d787356e3c24b7db5eaf4eab5261f82bd29738cfe8939b193a3bc

Contents?: true

Size: 1.88 KB

Versions: 3

Compression:

Stored size: 1.88 KB

Contents

<!-- Title System -->
<% phc_title "Members Manager" %>
<% phc_title_tagline "Members List" %>

<!-- Page Header -->
<div class="row wrapper border-bottom white-bg page-heading">
	<div class="col-sm-8">
		<h2><%= yield(:phc_title) %></h2>
		<!-- Bread Crumb -->
		<ol class="breadcrumb">
			<li><%= link_to "Dashboard", modules_dashboards_index_path %></li>
			<li class="active"><%= yield(:phc_title_tagline) %></li>
		</ol>
	</div>
	<div class="col-sm-4">
		<div class="title-action">
			<%= link_to new_member_profile_path, class: "btn btn-primary" do %>
				<i class="fa fa-plus"></i> Create a New Member
			<% 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-scrollable">
						<table class="table table-striped table-bordered table-hover dataTables-example">
							<thead>
								<tr>
									<th>First Name</th>
									<th>Last Name</th>
									<th>Email</th>
									<th>Phone</th>
								</tr>
							</thead>
							<tbody>
								<% @member_profiles.each do |member_profile| %>
									<tr>
										<td><%= link_to member_profile.mfirstname, member_profile %></td>
										<td><%= link_to member_profile.mlastname, member_profile %></td>
										<td><%= link_to member_profile.memail, member_profile %></td>
										<td><%= link_to member_profile.mphone, member_profile %></td>
									</tr>
								<% end %>
							</tbody>
						</table>
					</div>
				</div>

			</div>

		</div>
	</div>

</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
phcmemberspro-14.7.5 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-14.7.4 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-14.7.3 app/views/phcmemberspro/member/profiles/index.html.erb