Sha256: 71727eb007c39274436dd99f757402b84e5d8a43edb24fddcb36ec3075549ca6

Contents?: true

Size: 1.9 KB

Versions: 8

Compression:

Stored size: 1.9 KB

Contents

<!-- Title System -->
<% phc_title "PHCPress Plugin: Connections" %>
<% phc_title_tagline "Connections Index" %>
<% phc_breadcrumb_one yield(:phc_title_tagline) %>
<!-- Title System -->

<!-- Page Title Bar -->
<section class="content-header">
	<!-- Page Title and BreadCrumb -->
	<h1><%= yield(:phc_title) %> <small><%= yield(:phc_title_tagline) %></small></h1>
	<ol class="breadcrumb">
		<li><%= yield(:phc_breadcrumb_one) %></li>
		<li class="active"><%= yield(:phc_breadcrumb_two) %></li>
	</ol>
	<!-- Page Title and BreadCrumb -->
</section>
<!-- Page Title Bar -->

<!-- Main Content -->
<section class="content">
	<div class="row">
		<div class="col-lg-12">
			<div class="box">
				<div class="box-header with-border">
					<h3 class="box-title"><%= yield(:phc_title) %></h3>
				</div>
				<div class="box-body">

					<div class="table-responsive">
						<table class="table table-bordered table-striped table-hover">
							<thead>
								<tr>
									<th>Category</th>
									<th>Posts</th>
									<th colspan="3"></th>
								</tr>
							</thead>
			
							<tbody>
								<% @modules_connections.each do |modules_connection| %>
									<tr>
										<td><%= modules_connection.category.catname %></td>
										<td><%= modules_connection.post.psttitle %></td>
										<td><%= link_to 'Show', modules_connection, class: "btn btn-primary btn-xs" %></td>
										<td><%= link_to 'Edit', edit_modules_connection_path(modules_connection), class: "btn btn-primary btn-xs" %></td>
										<td><%= link_to 'Destroy', modules_connection, class: "btn btn-primary btn-xs", method: :delete, data: { confirm: 'Are you sure?' } %></td>
									</tr>
								<% end %>
							</tbody>
						</table>
					</div>
					<div class="box-footer clearfix">
						<%= link_to 'New Connection', new_modules_connection_path, class: "btn btn-primary" %>
					</div>
	
				</div>
			</div>
		</div>
	</div>
</section>
<!-- Main Content -->

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
phcpress-6.7.3 app/views/phcpress/modules/connections/index.html.erb
phcpress-6.7.2 app/views/phcpress/modules/connections/index.html.erb
phcpress-6.7.1 app/views/phcpress/modules/connections/index.html.erb
phcpress-6.7.0 app/views/phcpress/modules/connections/index.html.erb
phcpress-6.6.6 app/views/phcpress/modules/connections/index.html.erb
phcpress-6.6.5 app/views/phcpress/modules/connections/index.html.erb
phcpress-6.6.4 app/views/phcpress/modules/connections/index.html.erb
phcpress-6.6.3 app/views/phcpress/modules/connections/index.html.erb