Sha256: d5cb6c6120fab125e7a9716d0798b8413c87e4980821b8ae64ce9bc12e58be76

Contents?: true

Size: 1.62 KB

Versions: 1

Compression:

Stored size: 1.62 KB

Contents

<!-- Bread Crumbs -->
<header id="page-header">
	<h1><%= @directory_category.catname %> Listing Index</h1>
	<ol class="breadcrumb">
		<li><%= link_to "Home", directory_root_path %></li>
		<li class="active"><%= link_to "Directory Categories", directory_categories_path %></li>
	</ol>
</header>

<div id="content" class="padding-20">

	<!-- Main Content -->
	<div class="row">
		<div class="col-lg-12">
			<div class="portlet blue-chambray bordered">
				<div class="portlet-title">
					<div class="caption font-light">
						<i class="icon-settings font-light"></i>
						<span class="caption-subject bold uppercase"><%= @directory_category.catname %> Listing Index</span>
					</div>
				</div>
				<div class="portlet-body">
					<%= render 'phcnotifi/notifications' %>
					<div class="table-responsive">
						<table class="table table-striped table-bordered table-hover table-header-fixed">
							<tbody>
								<% @directory_catlists.each do |directory_catlists| %>
									<tr>
										<td><%= directory_catlists.category.catname %></td>
										<td><%= directory_catlists.listing.mlcompanyname %></td>
										<td><%= link_to 'Destroy', directory_category_catlist_path(directory_catlists.category, directory_catlists), class: "btn btn-danger", method: :delete, data: { confirm: 'Are you sure? This will only remove the listing from the directory category. The listing will still be saved with the members profile.' } %></td>
									</tr>
								<% end %>
							</tbody>
						</table>
					</div>
					<%= link_to 'New Listing', new_directory_category_catlist_path, class: "btn btn-primary" %>
				</div>
			</div>
		</div>
	</div>
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
phcmemberspro-4.6.7 app/views/phcmemberspro/directory/catlists/index.html.erb