Sha256: 175d70326094d868e165cfeac76e8bad9b7bfbacab893319f430bc61d7c5721b

Contents?: true

Size: 1.38 KB

Versions: 10

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

10 entries across 10 versions & 1 rubygems

Version Path
phcmembers-14.0.1 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-14.0.0 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-13.0.0 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-12.5.0 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-12.4.0 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-12.2.1 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-11.0.0 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-10.0.0 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-9.0.0 app/views/phcmembers/directory/categorylistings/index.html.erb
phcmembers-9.0.0b app/views/phcmembers/directory/categorylistings/index.html.erb