Sha256: 200bdc06edc530e2ea3832243d8793a048fdfa39993ec5ca04f2f54e655acb0e

Contents?: true

Size: 1.98 KB

Versions: 6

Compression:

Stored size: 1.98 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>

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

	<!-- 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>

</div>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
phcmemberspro-2.2.5 app/views/phcmemberspro/directory/categories/index.html.erb
phcmemberspro-2.2.4 app/views/phcmemberspro/directory/categories/index.html.erb
phcmemberspro-2.2.3 app/views/phcmemberspro/directory/categories/index.html.erb
phcmemberspro-2.2.1 app/views/phcmemberspro/directory/categories/index.html.erb
phcmemberspro-2.2.0 app/views/phcmemberspro/directory/categories/index.html.erb
phcmemberspro-2.1.9 app/views/phcmemberspro/directory/categories/index.html.erb