Sha256: b0cba25f522c5d5df25e1d0b507803c4ce549e2e7c33549660387048a7dd380b

Contents?: true

Size: 1.93 KB

Versions: 1

Compression:

Stored size: 1.93 KB

Contents

<!-- Title System -->
<% phc_title "Directory Listings" %>
<% phc_title_tagline "Web Directory Listings" %>

<div class="page-bar">

	<!-- Bread Crumb -->
	<ul class="page-breadcrumb">
		<li><%= link_to "Home", phcmembrspro.directory_root_path %><i class="fa fa-circle"></i></li>
		<li class="active"><%= link_to "Directory Listings", phcmembrspro.directory_listings_path %></li>
	</ul>

</div>

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

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

		<div class="portlet light">

			<div class="portlet-title">
				<div class="caption">
					<span class="caption-subject bold uppercase"><%= yield(:phc_title_tagline) %></span>
				</div>
				<div class="actions">
					<%= link_to new_directory_category_path, class: "btn blue-chambray btn-circle" do %>
						<i class="fa fa-plus"></i> Create a New Directory Category
					<% end %>
				</div>
			</div>

			<div class="portlet-body">
				<div class="table-responsive">
					<table class="table table-striped table-bordered table-hover table-header-fixed">
						<thead>
							<tr>
								<th>Business Name</th>
								<th>Category Name</th>
								<th></th>
							</tr>
						</thead>
						<tbody>
							<% @directory_listings.each do |directory_listing| %>
								<tr>
									<td></td>
									<td></td>
									<td>
										<div class="btn-group btn-group-xs btn-group-solid" role="group" aria-label="Directory Group">
											<%= link_to 'Edit', edit_directory_listing_path(directory_listing), class: "btn blue-hoki" %>
											<%= link_to 'Destroy', directory_listing, class: "btn red-mint", method: :delete, data: { confirm: 'Are you sure? Removing a directory category will also remove all listing connections.?' } %>
										</div>
									</td>
								</tr>
							<% end %>
						</tbody>
					</table>
				</div>
			</div>
		</div>

	</div>
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
phcmemberspro-6.8.1 app/views/phcmemberspro/directory/listings/index.html.erb