Sha256: a7c9e7fef0f7afeb05dc3e0371b2456965164cf299b536cbda0b6e1abb2c545e

Contents?: true

Size: 1.9 KB

Versions: 4

Compression:

Stored size: 1.9 KB

Contents

<!-- -PHCDEV- Title Variables -->
<% phc_title "Script Listings Manager" %>
<% phc_title_tagline "Script URL Index" %>
<% phc_breadcrumb_one link_to "Script Index", phcscriptcdnpro.script_listings_path %>
<% phc_breadcrumb_two yield(:phc_title_tagline) %>
<!-- -PHCDEV- Title Variables -->

<!-- -PHCDEV- Bradcrumbs -->
<ol class="breadcrumb float-xl-end">
	<li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
	<li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li>
</ol>
<!-- -PHCDEV- Bradcrumbs -->

<!-- -PHCDEV- Header -->
<h1 class="page-header"><%= yield(:phc_title) %></h1>
<!-- -PHCDEV- Header -->

<!-- -PHCDEV- Panel -->
<div class="panel panel-inverse">

	<!-- -PHCDEV- Panel - Heading -->
	<div class="panel-heading">
		<h4 class="panel-title"><%= yield(:phc_title_tagline) %></h4>
	</div>
	<!-- -PHCDEV- Panel - Heading -->

	<!-- -PHCDEV- Panel - Body -->
	<div class="panel-body">

		<!-- -PHCDEV- Table - Author Index -->
		<div class="table-responsive">
			<table class="table table-striped table-bordered">
				<thead>
					<tr>
						<th>Script URL</th>
						<th>Release Date</th>
						<th>CDN Update Date</th>
					</tr>
				</thead>
				<tbody>
					<% @script_urls.each do |script_url| %>
						<tr>
							<td><%= link_to script_url.script_url, script_listing_url_path(script_url.listing, script_url) %></td>
							<td><%= link_to script_url.script_url_release, script_listing_url_path(script_url.listing, script_url) %></td>
							<td><%= link_to script_url.script_url_cdn_update, script_listing_url_path(script_url.listing, script_url) %></td>
						</tr>
					<% end %>
				</tbody>
			</table>
			<%= link_to phcscriptcdnpro.new_script_listing_url_path, class: "btn btn-primary" do %>
				<i class="fas fa-plus-circle"></i>
				Add a New CDN URL
			<% end %>
		</div>
		<!-- -PHCDEV- Table - Author Index -->

	</div>
	<!-- -PHCDEV- Panel - Body -->

</div>
<!-- -PHCDEV- Panel -->

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
phcscriptcdnpro-79.0.3 app/views/phcscriptcdnpro/script/urls/index.html.erb
phcscriptcdnpro-79.0.2 app/views/phcscriptcdnpro/script/urls/index.html.erb
phcscriptcdnpro-79.0.1 app/views/phcscriptcdnpro/script/urls/index.html.erb
phcscriptcdnpro-79.0.0 app/views/phcscriptcdnpro/script/urls/index.html.erb