Sha256: 0a98c8aadef746ab62fa7535a2d0b5163b93d52c8723f71cb948a7f6f75efb4f

Contents?: true

Size: 1.75 KB

Versions: 33

Compression:

Stored size: 1.75 KB

Contents

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

<!-- Page Header -->
<div class="page-bar">
	<!-- Bread Crumb -->
	<ul class="page-breadcrumb">
		<li><%= link_to "Dashboard", modules_dashboards_index_path %><i class="fa fa-circle"></i></li>
		<li class="active"><%= yield(:phc_title_tagline) %></li>
	</ul>
	<div class="page-toolbar">
	</div>
</div>
<h1 class="page-title">
	<%= yield(:phc_title) %>
	<small><%= yield(:phc_title_tagline) %></small>
</h1>

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

		<div class="portlet light">

			<div class="portlet-title">
				<div class="caption">
					<span class="caption-subject bold uppercase">Main Members List</span>
				</div>
				<div class="actions">
					<%= link_to new_member_profile_path, class: "btn blue-chambray" do %>
						<i class="fa fa-plus"></i> Create a New Member
					<% end %>
				</div>
			</div>

			<div class="portlet-body">
				<div class="table-scrollable">
					<table class="table table-striped table-bordered table-advance table-hover">
						<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 class="highlight"><%= link_to member_profile.mfirstname, member_profile %></td>
									<td class="highlight"><%= link_to member_profile.mlastname, member_profile %></td>
									<td class="highlight"><%= link_to member_profile.memail, member_profile %></td>
									<td class="highlight"><%= link_to member_profile.mphone, member_profile %></td>
								</tr>
							<% end %>
						</tbody>
					</table>
				</div>
			</div>

		</div>

	</div>
</div>

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
phcmemberspro-11.2.2 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-11.2.1 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-11.2.0 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-11.1.6 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-11.1.5 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-11.1.4 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-11.1.3 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-11.1.2 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-11.1.1 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-11.1.0 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-11.0.9 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-11.0.8 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-11.0.7 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-11.0.6 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-11.0.5 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-11.0.1 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-11.0.0 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-10.0.7 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-10.0.5 app/views/phcmemberspro/member/profiles/index.html.erb
phcmemberspro-10.0.1 app/views/phcmemberspro/member/profiles/index.html.erb