Sha256: afc82e32ae930c060318aa5cf4b888ca3edca5c78034495f5d459eec849ca525

Contents?: true

Size: 1.09 KB

Versions: 1

Compression:

Stored size: 1.09 KB

Contents

<!-- Main Content -->
<div class="wrapper wrapper-content">
	<div class="panel panel-primary">

		<div class="panel-heading">
			<i class="fa fa-list-ul"></i> Connections List
		</div>

		<div class="panel-body">

			<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.categories.catname</td>
							<td>modules_connection.posts.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>

			<%= link_to 'New Connection', new_modules_connection_path, class: "btn btn-primary" %>

		</div>

	</div>
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
phcpresspro-4.2.0 app/views/phcpresspro/modules/connections/index.html.erb