Sha256: 1c47a0446919ff836a6ae7e06ad1f1373f17bd97134e938bbaa197c7ba87b27b

Contents?: true

Size: 1.38 KB

Versions: 24

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

24 entries across 24 versions & 1 rubygems

Version Path
phcmembers-6.7.3 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-6.7.2 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-6.7.1 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-6.7.0 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-6.5.1 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-6.5.0 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-6.4.1 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-6.4.0 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-6.3.5 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-6.3.4 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-6.3.3 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-6.3.2 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-6.3.1 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-6.3.0 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-6.2.0 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-6.1.6 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-6.1.5 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-6.1.4 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-6.1.3 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-6.1.2 app/views/phcmembers/directory/categorylistings/index.html.erb