Sha256: b4ffda4cd923c123ed76c50e9aff2b496ca0bb12a781df51db9f7d0aec8b9bab

Contents?: true

Size: 1.88 KB

Versions: 40

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-4">
		<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-8">
		<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

40 entries across 40 versions & 1 rubygems

Version Path
phcmemberspro-14.6.3 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-14.6.2 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-14.6.1 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-14.6.0 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-14.5.0 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-14.0.3 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-14.0.2 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-14.0.1 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-14.0.0 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-13.6.6 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-13.6.5 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-13.6.4 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-13.6.3 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-13.6.2 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-13.6.1 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-13.6.0 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-13.5.1 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-13.5.0 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-13.4.2 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-13.4.1 app/views/phcmemberspro/member/profiles/index.html.erb