Sha256: fa8ef38ae8247b2789c154f2f6f96f96315c13166d0c739130f9d2656c61b23f

Contents?: true

Size: 1.62 KB

Versions: 12

Compression:

Stored size: 1.62 KB

Contents

<!-- Title System -->
<% phc_title "PHCMembers - Members Manager" %>
<% phc_title_tagline "Members Complete Main Index" %>

<div class="page-bar">

	<!-- Bread Crumb -->
	<ul class="page-breadcrumb">
		<li><%= link_to "Home", mtdevise.root_path %><i class="fa fa-circle"></i></li>
		<li class="active"><%= link_to "Members List", members_mains_path %></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">Member's Main 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>First Name</th>
								<th>Last Name</th>
								<th>Email</th>
								<th>Phone</th>
								<th></th>
							</tr>
						</thead>
						<tbody>
							<% @members_mains.each do |members_main| %>
								<tr>
									<td><%= members_main.mfirstname %></td>
									<td><%= members_main.mlastname %></td>
									<td><%= members_main.memail %></td>
									<td><%= members_main.mphone %></td>
									<td><%= link_to 'Open Member Profile', members_main, class: "btn btn-sm blue-hoki" %></td>
								</tr>
							<% end %>
						</tbody>
					</table>
				</div>
				<%= link_to 'Add a New Member', new_members_main_path, class: "btn blue-hoki" %>
			</div>
		</div>

	</div>
</div>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
phcmemberspro-4.10.3 app/views/phcmemberspro/members/mains/index.html.erb
phcmemberspro-4.10.2 app/views/phcmemberspro/members/mains/index.html.erb
phcmemberspro-4.10.1 app/views/phcmemberspro/members/mains/index.html.erb
phcmemberspro-4.10.0 app/views/phcmemberspro/members/mains/index.html.erb
phcmemberspro-4.9.9 app/views/phcmemberspro/members/mains/index.html.erb
phcmemberspro-4.9.8 app/views/phcmemberspro/members/mains/index.html.erb
phcmemberspro-4.9.7 app/views/phcmemberspro/members/mains/index.html.erb
phcmemberspro-4.9.6 app/views/phcmemberspro/members/mains/index.html.erb
phcmemberspro-4.9.5 app/views/phcmemberspro/members/mains/index.html.erb
phcmemberspro-4.9.4 app/views/phcmemberspro/members/mains/index.html.erb
phcmemberspro-4.9.3 app/views/phcmemberspro/members/mains/index.html.erb
phcmemberspro-4.9.2 app/views/phcmemberspro/members/mains/index.html.erb