Sha256: ccbbe77b797aed414d4a7fabadc06409573019cc188b0f45d7961f268ac9690d

Contents?: true

Size: 1.89 KB

Versions: 3

Compression:

Stored size: 1.89 KB

Contents

<!-- Breadcrumbs -->
<header id="page-header">
	<h1>Directory Category &amp; 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>

<!-- Main Contents -->
<div class="row">
	<div class="col-lg-12">
		<div class="panel panel-primary">
			<div class="panel-heading">
				<span class="elipsis">
					<strong>Directory Categories &amp; Listings Index</strong>
				</span>
				<ul class="options pull-right list-inline">
					<%= render 'layouts/components/panel_options' %>
				</ul>
			</div>
			<div class="panel-body">
				<%= render 'layouts/phcnotifi/components/notifications' %>
				<table class="table table-bordered table-striped table-hover">
					<thead>
						<tr>
							<th>Category Name</th>
							<th colspan="2"></th>
						</tr>
					</thead>
					<tbody>
						<% @directory_categories.each do |directory_category| %>
							<tr>
								<td><%= directory_category.catname %></td>
								<td>
									<div class="btn-group" role="group" aria-label="Directory Group">
										<%= link_to 'Edit', edit_directory_category_path(directory_category), class: "btn btn-primary" %>
										<%= link_to 'Destroy', directory_category, class: "btn btn-danger", method: :delete, data: { confirm: 'Are you sure? Removing a directory category will also remove all listing connections.?' } %>
									</div>
								</td>
								<td>
									<div class="btn-group" role="group" aria-label="Directory Connection Group">
										<%= link_to  'Connect Member Listings', directory_category_catlists_path(directory_category), :class => "btn btn-success" %>
									</div>
								</td>
							</tr>
						<% end %>
					</tbody>
				</table>
				<%= link_to 'New Directory Category', new_directory_category_path, class: "btn btn-primary" %>
			</div>
		</div>
	</div>
</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
phcmemberspro-2.1.8 app/views/phcmemberspro/directory/categories/index.html.erb
phcmemberspro-2.1.7 app/views/phcmemberspro/directory/categories/index.html.erb
phcmemberspro-2.1.6 app/views/phcmemberspro/directory/categories/index.html.erb