Sha256: 66ba1e9f9a4f48b6adab1f8b34f98d394119dcab4b43059c21a5fbadb042db57

Contents?: true

Size: 1.59 KB

Versions: 4

Compression:

Stored size: 1.59 KB

Contents

<!-- Title System -->
<% phc_title "Directory Category Manager" %>
<% phc_title_tagline "Web Directory Category Index" %>

<!-- Page Header -->
<div class="row wrapper border-bottom white-bg page-heading">
	<div class="col-sm-4">
		<h2><%= yield(:phc_title) %></h2>
		<!-- Bread Crumb -->
		<ol class="breadcrumb">
			<li><%= link_to "Dashboard", phcmemberspro.modules_dashboards_index_path %></li>
			<li class="active"><%= yield(:phc_title_tagline) %></li>
		</ol>
	</div>
	<div class="col-sm-8">
		<div class="title-action">
			<%= link_to phcmemberspro.new_directory_category_path, class: "btn btn-primary" do %>
				<i class="fa fa-plus"></i> Create a New Directory Category
			<% end %>
		</div>
	</div>
</div>

<div class="wrapper wrapper-content animated fadeInRight">

	<!-- Page Content -->
	<div class="row">
		<div class="col-lg-12">
			<!-- Page Content -->
			<div class="ibox float-e-margins">

				<div class="ibox-title">
					<h5><%= yield(:phc_title_tagline) %></h5>
					<div class="ibox-tools">
						<a class="collapse-link">
							<i class="fa fa-chevron-up"></i>
						</a>
						<a class="close-link">
							<i class="fa fa-times"></i>
						</a>
					</div>
				</div>

				<div class="ibox-content">
					<ul class="list-group">
						<% @directory_categories.each do |directory_category| %>
							<li class="list-group-item">
								<span class="badge badge-default badge-roundless"><%= directory_category.listings.count %></span></span>
								<%= link_to directory_category.catname, directory_category %>
							</li>
						<% end %>
					</ul>
				</div>
			</div>
		</div>
	</div>

</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
phcmemberspro-14.7.3 app/views/phcmemberspro/directory/categories/index.html.erb
phcmemberspro-14.7.2 app/views/phcmemberspro/directory/categories/index.html.erb
phcmemberspro-14.7.1 app/views/phcmemberspro/directory/categories/index.html.erb
phcmemberspro-14.7.0 app/views/phcmemberspro/directory/categories/index.html.erb