Sha256: c13c584029d7db3f6953daa957587cb10872e69ab4705a1f1a21b73d384d5563

Contents?: true

Size: 1.79 KB

Versions: 8

Compression:

Stored size: 1.79 KB

Contents

<!-- Title System -->
<% phc_title "Script Listings Manager" %>
<% phc_title_tagline "Author Index" %>
<% phc_breadcrumb_one yield(:phc_title_tagline) %>
<!-- Title System -->

<!-- Page Title Bar -->
<section class="content-header">
	<!-- Page Title and BreadCrumb -->
	<h1><%= yield(:phc_title) %> <small><%= yield(:phc_title_tagline) %></small></h1>
	<ol class="breadcrumb">
		<li><%= yield(:phc_breadcrumb_one) %></li>
		<li class="active"><%= yield(:phc_breadcrumb_two) %></li>
	</ol>
	<!-- Page Title and BreadCrumb -->
</section>
<!-- Page Title Bar -->

<!-- Main Content -->
<section class="content">
	<div class="row">
		<div class="col-lg-12">
			<div class="box">
				<div class="box-header with-border">
					<h3 class="box-title"><%= yield(:phc_title) %></h3>
				</div>
				<div class="box-body">

					<!-- Table Index -->
					<table class="table table-striped table-bordered table-advance table-hover">
						<thead>
							<tr>
								<th>First Name</th>
								<th>Last Name</th>
								<th>Website</th>
								<th>Github</th>
								<th>Twitter</th>
							</tr>
						</thead>
						<tbody>
							<% @script_authors.each do |script_author| %>
								<tr>
									<td><%= link_to script_author.authorfirstname, script_author %></td>
									<td><%= link_to script_author.authorlastname, script_author %></td>
									<td><%= link_to script_author.authorwebsite, script_author %></td>
									<td><%= link_to script_author.authorgithub, script_author %></td>
									<td><%= link_to script_author.authortwitter, script_author %></td>
								</tr>
							<% end %>
						</tbody>
					</table>
					<!-- Table Index -->
					
					<%= link_to 'New Script Author', new_script_listing_author_path, class: "btn btn-primary" %>

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

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
phcscriptcdn-4.3.10 app/views/phcscriptcdn/script/authors/index.html.erb
phcscriptcdn-4.3.9 app/views/phcscriptcdn/script/authors/index.html.erb
phcscriptcdn-4.3.8 app/views/phcscriptcdn/script/authors/index.html.erb
phcscriptcdn-4.3.7 app/views/phcscriptcdn/script/authors/index.html.erb
phcscriptcdn-4.3.6 app/views/phcscriptcdn/script/authors/index.html.erb
phcscriptcdn-4.3.5 app/views/phcscriptcdn/script/authors/index.html.erb
phcscriptcdn-4.3.4 app/views/phcscriptcdn/script/authors/index.html.erb
phcscriptcdn-4.3.3 app/views/phcscriptcdn/script/authors/index.html.erb