Sha256: 23a510d54c56e78acfb6068348d6adf3fa9ca05547ec22a47e2712920bace328

Contents?: true

Size: 1.9 KB

Versions: 83

Compression:

Stored size: 1.9 KB

Contents

<!-- Title System -->
<% phc_title "Plugin: Article Category Manager" %>
<% phc_title_tagline "Category Index" %>
<% phc_breadcrumb_one yield(:phc_title_tagline) %>
<!-- Title System -->

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

<!-- Page Content -->
<div class="wrapper wrapper-content animated fadeInRight">
	<div class="row">
		<div class="col-lg-12">

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

					<div class="table-responsive">
						<table class="table table-striped table-bordered table-hover dataTables-example">
							<thead>
								<tr>
									<th>Category Name</th>
									<th></th>
								</tr>
							</thead>
							<tbody>
								<% @modules_categories.each do |modules_category| %>
									<tr>
										<td><%= link_to modules_category.catname, phcpresspro.edit_modules_category_path(modules_category) %></td>
										<td><%= link_to 'Trash', modules_category, class: "btn btn-danger btn-xs", method: :delete, data: { confirm: 'Are you sure?' } %></td>
									</tr>
								<% end %>
							</tbody>
						</table>
					</div>

				</div>
			</div>

		</div>
	</div>
</div>
<!-- Page Content -->

Version data entries

83 entries across 83 versions & 1 rubygems

Version Path
phcpresspro-55.0.0 app/views/phcpresspro/modules/categories/index.html.erb
phcpresspro-54.0.0 app/views/phcpresspro/modules/categories/index.html.erb
phcpresspro-53.0.0 app/views/phcpresspro/modules/categories/index.html.erb
phcpresspro-52.0.0 app/views/phcpresspro/modules/categories/index.html.erb
phcpresspro-51.0.0 app/views/phcpresspro/modules/categories/index.html.erb
phcpresspro-50.0.0 app/views/phcpresspro/modules/categories/index.html.erb
phcpresspro-49.0.0 app/views/phcpresspro/modules/categories/index.html.erb
phcpresspro-48.0.0 app/views/phcpresspro/modules/categories/index.html.erb
phcpresspro-47.1.0 app/views/phcpresspro/modules/categories/index.html.erb
phcpresspro-47.0.0 app/views/phcpresspro/modules/categories/index.html.erb
phcpresspro-46.0.0 app/views/phcpresspro/modules/categories/index.html.erb
phcpresspro-44.2.0 app/views/phcpresspro/modules/categories/index.html.erb
phcpresspro-44.1.0 app/views/phcpresspro/modules/categories/index.html.erb
phcpresspro-44.0.0 app/views/phcpresspro/modules/categories/index.html.erb
phcpresspro-43.0.0 app/views/phcpresspro/modules/categories/index.html.erb
phcpresspro-42.0.0 app/views/phcpresspro/modules/categories/index.html.erb
phcpresspro-41.0.0 app/views/phcpresspro/modules/categories/index.html.erb
phcpresspro-40.1.0 app/views/phcpresspro/modules/categories/index.html.erb
phcpresspro-40.0.0 app/views/phcpresspro/modules/categories/index.html.erb
phcpresspro-39.0.1 app/views/phcpresspro/modules/categories/index.html.erb