Sha256: 219a4136a68f5c36d576a4f0fcb16b20d62a8a400fe4b55cd573d7dcc3617cb6

Contents?: true

Size: 1.51 KB

Versions: 8

Compression:

Stored size: 1.51 KB

Contents

<!-- Title System -->
<% phc_title "Script Listing Manager" %>
<% phc_title_tagline "Create a New Script Listing" %>

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

		<!-- Bread Crumbs -->
		<ol class="breadcrumb">
			<li><%= link_to "Script Listings Index", script_listings_path %></li>
			<li class="active"><%= yield(:phc_title_tagline) %></li>
		</ol>

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

	</div>
</div>

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

		<!-- Main Content -->
		<table class="table table-bordered table-striped 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>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
phcscriptcdnpro-3.2.2 app/views/phcscriptcdnpro/script/listings/index.html.erb
phcscriptcdnpro-3.2.1 app/views/phcscriptcdnpro/script/listings/index.html.erb
phcscriptcdnpro-3.2.0 app/views/phcscriptcdnpro/script/listings/index.html.erb
phcscriptcdnpro-3.1.1 app/views/phcscriptcdnpro/script/listings/index.html.erb
phcscriptcdnpro-3.1.0 app/views/phcscriptcdnpro/script/listings/index.html.erb
phcscriptcdnpro-3.0.5 app/views/phcscriptcdnpro/script/listings/index.html.erb
phcscriptcdnpro-3.0.1 app/views/phcscriptcdnpro/script/listings/index.html.erb
phcscriptcdnpro-3.0.0 app/views/phcscriptcdnpro/script/listings/index.html.erb