Sha256: e9bcae9de6207a32dbf9825e6fb26ee33e348b094f94b411b862ef5eb3df3a23

Contents?: true

Size: 1.38 KB

Versions: 13

Compression:

Stored size: 1.38 KB

Contents

<!-- Title Variables -->
<% phc_title "Member Listings Manager" %>
<% phc_title_tagline "Complete Directory Listing Index" %>

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

		<!-- Bread Crumbs -->
		<ol class="breadcrumb">
			<li><%= link_to "Dashboard", directory_root_path %></li>
			<li class="active"><%= yield(:phc_title_tagline) %></li>
		</ol>

		<!-- Page Title -->
		<h3 class="page-title">
			<%= yield(:phc_title) %> </br>
			<small><%= yield(:phc_title_tagline) %></small>
		</h3>

	</div>
</div>

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

		<div class="panel panel-default">
			<div class="panel-heading">

				<div class="caption">
					<span class="caption-subject bold uppercase"><%= yield(:phc_title_tagline) %></span>
				</div>

			</div>
			<div class="panel-body">

				<div class="table-scrollable">
					<table class="table table-striped table-bordered table-advance table-hover">
	
						<thead>
							<tr>
								<th>Category</th>
								<th>Company Name</th>
							</tr>
						</thead>

						<tbody>
							<% @directory_categorylistings.each do |directory_categorylisting| %>
								<tr>
									<td><%= directory_categorylisting.category.catname %></td>
									<td><%= directory_categorylisting.listing.mbcompanyname %></td>
								</tr>
							<% end %>
						</tbody>

					</table>
				</div>
			</div>
		</div>

	</div>
</div>

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
phcmembers-8.1.2 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-8.1.1 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-8.1.0 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-8.0.3 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-8.0.2 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-8.0.1 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-8.0.0 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-7.0.3 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-7.0.2 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-7.0.1 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-7.0.0 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-6.7.5 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-6.7.4 app/views/phcmembers/directory/categorylistings/index.html.erb