Sha256: 8008aad64a1b7ae65045f11eeb1e47d515ea6029a0a3b94acec67bc5fbd837f4

Contents?: true

Size: 1.97 KB

Versions: 26

Compression:

Stored size: 1.97 KB

Contents

<!-- Bread Crumbs -->
<div class="row">
	<div class="col-lg-12">
		<h2>Member's Information</h2>
		<ol class="breadcrumb">
			<li><%= link_to "Home", members_root_path %></li>
			<li><%= link_to "Members List", members_mains_path %></li>
			<li><%= link_to "Members Listings", members_main_contacts_path %></li>
		</ol>
	</div>
</div>

<!-- Main Information -->
<div class="row">
	<div class="col-lg-12">
		<div class="panel panel-primary">
			<div class="panel-heading">
				Member's Listing Index
			</div>
			<div class="panel-body">
				<table class="table table-bordered table-striped table-hover">
					<thead>
						<tr>
							<th>Contact Name</th>
							<th>Company Name</th>
							<th>City</th>
							<th>Country</th>
							<th>Phone Number</th>
							<th>Email</th>
							<th></th>
						</tr>
					</thead>
					<tbody>
						<% @members_listings.each do |members_listing| %>
							<tr>
								<td><%= members_listing.mlcontactname %></td>
								<td><%= members_listing.mlcompanyname %></td>
								<td><%= members_listing.mlcity %></td>
								<td><%= members_listing.mlcountry %></td>
								<td><%= members_listing.mlphone %></td>
								<td><%= members_listing.mlemail %></td>
								<td>
									<div class="btn-group" role="group" aria-label="Member Listings Group">
										<%= link_to 'Details', members_main_listing_path(members_listing.main, members_listing), class: "btn btn-primary" %>
										<%= link_to 'Edit', edit_members_main_listing_path(members_listing.main, members_listing), class: "btn btn-primary" %>
										<%= link_to 'Delete', members_main_listing_path(members_listing.main, members_listing), class: "btn btn-danger", method: :delete, data: { confirm: 'Are you sure? This will also remove this listing from the online directories.' } %>
									</div>
								</td>
							</tr>
						<% end %>
					</tbody>
				</table>
				<%= link_to 'New Member Listing', new_members_main_listing_path, class: "btn btn-primary" %>
			</div>
		</div>
	</div>
</div>

Version data entries

26 entries across 26 versions & 2 rubygems

Version Path
phcmemberspro-2.1.0 app/views/phcmemberspro/members/listings/index.html.erb
phcmembers-0.9.8 app/views/phcmembers/members/listings/index.html.erb
phcmemberspro-1.8.0 app/views/phcmemberspro/members/listings/index.html.erb
phcmemberspro-1.7.0 app/views/phcmemberspro/members/listings/index.html.erb
phcmemberspro-1.6.5 app/views/phcmemberspro/members/listings/index.html.erb
phcmemberspro-1.6.3 app/views/phcmemberspro/members/listings/index.html.erb
phcmemberspro-1.6.1 app/views/phcmemberspro/members/listings/index.html.erb
phcmemberspro-1.6.0 app/views/phcmemberspro/members/listings/index.html.erb
phcmemberspro-1.5.8 app/views/phcmemberspro/members/listings/index.html.erb
phcmemberspro-1.5.7 app/views/phcmemberspro/members/listings/index.html.erb
phcmemberspro-1.5.6 app/views/phcmemberspro/members/listings/index.html.erb
phcmemberspro-1.5.5 app/views/phcmemberspro/members/listings/index.html.erb
phcmemberspro-1.0.6 app/views/phcmemberspro/members/listings/index.html.erb
phcmemberspro-1.0.5 app/views/phcmemberspro/members/listings/index.html.erb
phcmemberspro-1.0.3 app/views/phcmemberspro/members/listings/index.html.erb
phcmemberspro-1.0.2 app/views/phcmemberspro/members/listings/index.html.erb
phcmemberspro-1.0.1 app/views/phcmemberspro/members/listings/index.html.erb
phcmemberspro-1.0.0 app/views/phcmemberspro/members/listings/index.html.erb
phcmembers-0.9.7 app/views/phcmembers/members/listings/index.html.erb
phcmembers-0.9.6 app/views/phcmembers/members/listings/index.html.erb