Sha256: 93023fd7e60f2d584d18efc9f20a6117723a253249a33621ee747d773b4d6b5c

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 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.1 app/views/phcpresspro/modules/connections/index.html.erb