Sha256: f39f908f1e4dd29ba3a8ac7bdeefcbf45fedba37e055f816dc327f29ce15e218

Contents?: true

Size: 1.53 KB

Versions: 7

Compression:

Stored size: 1.53 KB

Contents

<!-- Title System -->
<% phc_title "Script Listings Manager" %>
<% phc_title_tagline "Script Listing Index" %>
<!-- Title System -->

<!-- Page Header -->
<div class="row">
	<div class="col-lg-12">

		<!-- Bread Crumbs -->
		<ol class="breadcrumb">
			<li class="active"><%= yield(:phc_title_tagline) %></li>
		</ol>
		<!-- Bread Crumbs -->

		<!-- Page Title -->
		<h3 class="page-title">
			<%= yield(:phc_title) %> </br>
			<small><%= yield(:phc_title_tagline) %></small>
		</h3>
		<!-- Page Title -->

	</div>
</div>
<!-- Page Header -->

<!-- Main Content -->
<div class="row">
	<div class="col-lg-12">

		<table class="table table-striped table-bordered table-advance table-hover">
			<thead>
				<tr>
					<th>Title</th>
					<th>Release Date</th>
					<th>Latest Release Date</th>
					<th>Beta Release Date</th>
				</tr>
			</thead>
			<tbody>
				<% @script_listings.each do |script_listing| %>
					<tr>
						<td class="vert-align"><%= link_to script_listing.scripttitle, script_listing_path(script_listing) %></td>
						<td class="vert-align"><%= link_to script_listing.scriptinitialrelease, script_listing_path(script_listing) %></td>
						<td class="vert-align"><%= link_to script_listing.scriptlastestrelease, script_listing_path(script_listing) %></td>
						<td class="vert-align"><%= link_to script_listing.scriptbetarelease, script_listing_path(script_listing) %></td>
					</tr>
				<% end %>
			</tbody>
		</table>

		<%= link_to 'New Script Listing', new_script_listing_path, class: "btn btn-primary" %>

	</div>
</div>
<!-- Main Content -->

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
phcscriptcdn-4.3.2 app/views/phcscriptcdn/script/listings/index.html.erb
phcscriptcdn-4.3.1 app/views/phcscriptcdn/script/listings/index.html.erb
phcscriptcdn-4.3.0 app/views/phcscriptcdn/script/listings/index.html.erb
phcscriptcdn-4.2.1 app/views/phcscriptcdn/script/listings/index.html.erb
phcscriptcdn-4.2.0 app/views/phcscriptcdn/script/listings/index.html.erb
phcscriptcdn-4.1.0 app/views/phcscriptcdn/script/listings/index.html.erb
phcscriptcdn-4.0.0 app/views/phcscriptcdn/script/listings/index.html.erb