phcscriptcdn 4.3.2 → 4.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/views/phcscriptcdn/script/authors/_form.html.erb +6 -1
- data/app/views/phcscriptcdn/script/authors/edit.html.erb +28 -27
- data/app/views/phcscriptcdn/script/authors/index.html.erb +52 -51
- data/app/views/phcscriptcdn/script/authors/new.html.erb +28 -27
- data/app/views/phcscriptcdn/script/authors/show.html.erb +31 -22
- data/app/views/phcscriptcdn/script/extensions/_form.html.erb +5 -0
- data/app/views/phcscriptcdn/script/extensions/edit.html.erb +28 -27
- data/app/views/phcscriptcdn/script/extensions/index.html.erb +46 -45
- data/app/views/phcscriptcdn/script/extensions/new.html.erb +28 -27
- data/app/views/phcscriptcdn/script/extensions/show.html.erb +31 -23
- data/app/views/phcscriptcdn/script/licences/_form.html.erb +7 -1
- data/app/views/phcscriptcdn/script/licences/edit.html.erb +29 -28
- data/app/views/phcscriptcdn/script/licences/index.html.erb +54 -53
- data/app/views/phcscriptcdn/script/licences/new.html.erb +29 -28
- data/app/views/phcscriptcdn/script/licences/show.html.erb +31 -22
- data/app/views/phcscriptcdn/script/listings/_form.html.erb +6 -1
- data/app/views/phcscriptcdn/script/listings/edit.html.erb +28 -27
- data/app/views/phcscriptcdn/script/listings/index.html.erb +48 -47
- data/app/views/phcscriptcdn/script/listings/new.html.erb +28 -27
- data/app/views/phcscriptcdn/script/listings/show.html.erb +29 -28
- data/app/views/phcscriptcdn/script/urls/_form.html.erb +6 -1
- data/app/views/phcscriptcdn/script/urls/edit.html.erb +27 -27
- data/app/views/phcscriptcdn/script/urls/index.html.erb +46 -46
- data/app/views/phcscriptcdn/script/urls/new.html.erb +28 -28
- data/app/views/phcscriptcdn/script/urls/show.html.erb +30 -30
- data/app/views/phcscriptcdn/script/versions/_form.html.erb +6 -1
- data/app/views/phcscriptcdn/script/versions/edit.html.erb +28 -27
- data/app/views/phcscriptcdn/script/versions/index.html.erb +43 -43
- data/app/views/phcscriptcdn/script/versions/new.html.erb +28 -27
- data/app/views/phcscriptcdn/script/versions/show.html.erb +30 -29
- data/lib/phcscriptcdn/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 880818932f655c7a70de8b047fcf175de29c68a4
|
4
|
+
data.tar.gz: e40e3df71adbf7a33bb19f74144ed4eff85bb166
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e0fac4a12fb80d872e80ce91fdfb971771c7d860f7dd166485e34c5de0e5d6984c0f12a34fc74dd10e81286515e3ceb533a532c30f84644a13872cfbe9fc6be0
|
7
|
+
data.tar.gz: 71e2d4e4fd969aa5175873fa203b597ae31304ee79e0289ffd47ad3209aa8c6aa2a842c9c33efaf957bf1458dd2109eb25ddf8704aa9525229b7834bf11267ed
|
@@ -1,7 +1,9 @@
|
|
1
1
|
<%= form_for(script_author) do |f| %>
|
2
2
|
|
3
|
+
<!-- PHCNotifi Render Validation -->
|
3
4
|
<%= render 'phcnotifi/validations', :object => @script_author %>
|
4
5
|
|
6
|
+
<!-- Form Input Fields -->
|
5
7
|
<div class="form-group field_with_error">
|
6
8
|
<%= f.label :authorfirstname, "Author First Name" %>
|
7
9
|
<%= f.text_field :authorfirstname, placeholder: "Author First Name", class: "form-control" %>
|
@@ -22,9 +24,12 @@
|
|
22
24
|
<%= f.label :authortwitter, "Author Twitter Addresss" %>
|
23
25
|
<%= f.text_field :authortwitter, placeholder: "Author Twitter Addresss", class: "form-control" %>
|
24
26
|
</div>
|
27
|
+
<!-- Form Input Fields -->
|
25
28
|
|
29
|
+
<!-- Form Submition Button -->
|
26
30
|
<div class="actions">
|
27
31
|
<%= f.submit class: "btn btn-primary" %>
|
28
32
|
</div>
|
33
|
+
<!-- For Submition Button -->
|
29
34
|
|
30
|
-
<% end %>
|
35
|
+
<% end %>
|
@@ -1,37 +1,38 @@
|
|
1
1
|
<!-- Title System -->
|
2
2
|
<% phc_title "Script Listings Manager" %>
|
3
3
|
<% phc_title_tagline "Update Author Data" %>
|
4
|
+
<% phc_breadcrumb_one link_to "Author Index", phcscriptcdnpro.script_authors_path %>
|
5
|
+
<% phc_breadcrumb_two yield(:phc_title_tagline) %>
|
4
6
|
<!-- Title System -->
|
5
7
|
|
6
|
-
<!-- Page
|
7
|
-
<
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
<
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
<!-- Page Title -->
|
18
|
-
<h3 class="page-title">
|
19
|
-
<%= yield(:phc_title) %> </br>
|
20
|
-
<small><%= yield(:phc_title_tagline) %></small>
|
21
|
-
</h3>
|
22
|
-
<!-- Page Title -->
|
23
|
-
|
24
|
-
</div>
|
25
|
-
</div>
|
26
|
-
<!-- Page Header -->
|
8
|
+
<!-- Page Title Bar -->
|
9
|
+
<section class="content-header">
|
10
|
+
<!-- Page Title and BreadCrumb -->
|
11
|
+
<h1><%= yield(:phc_title) %> <small><%= yield(:phc_title_tagline) %></small></h1>
|
12
|
+
<ol class="breadcrumb">
|
13
|
+
<li><%= yield(:phc_breadcrumb_one) %></li>
|
14
|
+
<li class="active"><%= yield(:phc_breadcrumb_two) %></li>
|
15
|
+
</ol>
|
16
|
+
<!-- Page Title and BreadCrumb -->
|
17
|
+
</section>
|
18
|
+
<!-- Page Title Bar -->
|
27
19
|
|
28
20
|
<!-- Main Content -->
|
29
|
-
<
|
30
|
-
<div class="
|
21
|
+
<section class="content">
|
22
|
+
<div class="row">
|
23
|
+
<div class="col-lg-12">
|
24
|
+
<div class="box">
|
25
|
+
<div class="box-header with-border">
|
26
|
+
<h3 class="box-title"><%= yield(:phc_title) %></h3>
|
27
|
+
</div>
|
28
|
+
<div class="box-body">
|
31
29
|
|
32
|
-
|
33
|
-
|
30
|
+
<!-- Form Requries URL to Function Properly -->
|
31
|
+
<%= render 'form', script_author: @script_author %>
|
34
32
|
|
33
|
+
</div>
|
34
|
+
</div>
|
35
|
+
</div>
|
35
36
|
</div>
|
36
|
-
</
|
37
|
-
<!-- Main Content -->
|
37
|
+
</section>
|
38
|
+
<!-- Main Content -->
|
@@ -1,60 +1,61 @@
|
|
1
1
|
<!-- Title System -->
|
2
2
|
<% phc_title "Script Listings Manager" %>
|
3
3
|
<% phc_title_tagline "Author Index" %>
|
4
|
+
<% phc_breadcrumb_one yield(:phc_title_tagline) %>
|
4
5
|
<!-- Title System -->
|
5
6
|
|
6
|
-
<!-- Page
|
7
|
-
<
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
<
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
<h3 class="page-title">
|
18
|
-
<%= yield(:phc_title) %> </br>
|
19
|
-
<small><%= yield(:phc_title_tagline) %></small>
|
20
|
-
</h3>
|
21
|
-
<!-- Page Title -->
|
22
|
-
|
23
|
-
</div>
|
24
|
-
</div>
|
25
|
-
<!-- Page Header -->
|
7
|
+
<!-- Page Title Bar -->
|
8
|
+
<section class="content-header">
|
9
|
+
<!-- Page Title and BreadCrumb -->
|
10
|
+
<h1><%= yield(:phc_title) %> <small><%= yield(:phc_title_tagline) %></small></h1>
|
11
|
+
<ol class="breadcrumb">
|
12
|
+
<li><%= yield(:phc_breadcrumb_one) %></li>
|
13
|
+
<li class="active"><%= yield(:phc_breadcrumb_two) %></li>
|
14
|
+
</ol>
|
15
|
+
<!-- Page Title and BreadCrumb -->
|
16
|
+
</section>
|
17
|
+
<!-- Page Title Bar -->
|
26
18
|
|
27
19
|
<!-- Main Content -->
|
28
|
-
<
|
29
|
-
<div class="
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
<
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
<
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
20
|
+
<section class="content">
|
21
|
+
<div class="row">
|
22
|
+
<div class="col-lg-12">
|
23
|
+
<div class="box">
|
24
|
+
<div class="box-header with-border">
|
25
|
+
<h3 class="box-title"><%= yield(:phc_title) %></h3>
|
26
|
+
</div>
|
27
|
+
<div class="box-body">
|
28
|
+
|
29
|
+
<!-- Table Index -->
|
30
|
+
<table class="table table-striped table-bordered table-advance table-hover">
|
31
|
+
<thead>
|
32
|
+
<tr>
|
33
|
+
<th>First Name</th>
|
34
|
+
<th>Last Name</th>
|
35
|
+
<th>Website</th>
|
36
|
+
<th>Github</th>
|
37
|
+
<th>Twitter</th>
|
38
|
+
</tr>
|
39
|
+
</thead>
|
40
|
+
<tbody>
|
41
|
+
<% @script_authors.each do |script_author| %>
|
42
|
+
<tr>
|
43
|
+
<td><%= link_to script_author.authorfirstname, script_author %></td>
|
44
|
+
<td><%= link_to script_author.authorlastname, script_author %></td>
|
45
|
+
<td><%= link_to script_author.authorwebsite, script_author %></td>
|
46
|
+
<td><%= link_to script_author.authorgithub, script_author %></td>
|
47
|
+
<td><%= link_to script_author.authortwitter, script_author %></td>
|
48
|
+
</tr>
|
49
|
+
<% end %>
|
50
|
+
</tbody>
|
51
|
+
</table>
|
52
|
+
<!-- Table Index -->
|
53
|
+
|
54
|
+
<%= link_to 'New Script Author', new_script_listing_author_path, class: "btn btn-primary" %>
|
55
|
+
|
56
|
+
</div>
|
57
|
+
</div>
|
58
|
+
</div>
|
58
59
|
</div>
|
59
|
-
</
|
60
|
+
</section>
|
60
61
|
<!-- Main Content -->
|
@@ -1,37 +1,38 @@
|
|
1
1
|
<!-- Title System -->
|
2
2
|
<% phc_title "Script Listings Manager" %>
|
3
3
|
<% phc_title_tagline "Add a New Author" %>
|
4
|
+
<% phc_breadcrumb_one link_to "Author Index", phcscriptcdnpro.script_authors_path %>
|
5
|
+
<% phc_breadcrumb_two yield(:phc_title_tagline) %>
|
4
6
|
<!-- Title System -->
|
5
7
|
|
6
|
-
<!-- Page
|
7
|
-
<
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
<
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
<!-- Page Title -->
|
18
|
-
<h3 class="page-title">
|
19
|
-
<%= yield(:phc_title) %> </br>
|
20
|
-
<small><%= yield(:phc_title_tagline) %></small>
|
21
|
-
</h3>
|
22
|
-
<!-- Page Title -->
|
23
|
-
|
24
|
-
</div>
|
25
|
-
</div>
|
26
|
-
<!-- Page Header -->
|
8
|
+
<!-- Page Title Bar -->
|
9
|
+
<section class="content-header">
|
10
|
+
<!-- Page Title and BreadCrumb -->
|
11
|
+
<h1><%= yield(:phc_title) %> <small><%= yield(:phc_title_tagline) %></small></h1>
|
12
|
+
<ol class="breadcrumb">
|
13
|
+
<li><%= yield(:phc_breadcrumb_one) %></li>
|
14
|
+
<li class="active"><%= yield(:phc_breadcrumb_two) %></li>
|
15
|
+
</ol>
|
16
|
+
<!-- Page Title and BreadCrumb -->
|
17
|
+
</section>
|
18
|
+
<!-- Page Title Bar -->
|
27
19
|
|
28
20
|
<!-- Main Content -->
|
29
|
-
<
|
30
|
-
<div class="
|
21
|
+
<section class="content">
|
22
|
+
<div class="row">
|
23
|
+
<div class="col-lg-12">
|
24
|
+
<div class="box">
|
25
|
+
<div class="box-header with-border">
|
26
|
+
<h3 class="box-title"><%= yield(:phc_title) %></h3>
|
27
|
+
</div>
|
28
|
+
<div class="box-body">
|
31
29
|
|
32
|
-
|
33
|
-
|
30
|
+
<!-- Form Requries URL to Function Properly -->
|
31
|
+
<%= render 'form', script_author: @script_author %>
|
34
32
|
|
33
|
+
</div>
|
34
|
+
</div>
|
35
|
+
</div>
|
35
36
|
</div>
|
36
|
-
</
|
37
|
-
<!-- Main Content -->
|
37
|
+
</section>
|
38
|
+
<!-- Main Content -->
|
@@ -1,31 +1,40 @@
|
|
1
1
|
<!-- Title System -->
|
2
2
|
<% phc_title "Script Listings Manager" %>
|
3
3
|
<% phc_title_tagline "Script Author Profile" %>
|
4
|
+
<% phc_breadcrumb_one link_to "Author Index", phcscriptcdnpro.script_authors_path %>
|
5
|
+
<% phc_breadcrumb_two yield(:phc_title_tagline) %>
|
4
6
|
<!-- Title System -->
|
5
7
|
|
6
|
-
<!-- Page
|
7
|
-
<
|
8
|
-
|
8
|
+
<!-- Page Title Bar -->
|
9
|
+
<section class="content-header">
|
10
|
+
<!-- Page Title and BreadCrumb -->
|
11
|
+
<h1><%= yield(:phc_title) %> <small><%= yield(:phc_title_tagline) %></small></h1>
|
12
|
+
<ol class="breadcrumb">
|
13
|
+
<li><%= yield(:phc_breadcrumb_one) %></li>
|
14
|
+
<li class="active"><%= yield(:phc_breadcrumb_two) %></li>
|
15
|
+
</ol>
|
16
|
+
<!-- Page Title and BreadCrumb -->
|
17
|
+
</section>
|
18
|
+
<!-- Page Title Bar -->
|
9
19
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
20
|
+
<!-- Main Content -->
|
21
|
+
<section class="content">
|
22
|
+
<div class="row">
|
23
|
+
<div class="col-lg-12">
|
24
|
+
<div class="box">
|
25
|
+
<div class="box-header with-border">
|
26
|
+
<h3 class="box-title"><%= yield(:phc_title) %></h3>
|
27
|
+
</div>
|
28
|
+
<div class="box-body">
|
16
29
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
</h3>
|
22
|
-
<!-- Page Title -->
|
30
|
+
<div class="btn-group" role="group" aria-label="author_button_group">
|
31
|
+
<%= link_to 'Edit', edit_script_listing_author_path(@script_author), class: "btn btn-primary" %>
|
32
|
+
<%= link_to 'Destroy', script_listing_author_path(@script_author), method: :delete, data: { confirm: 'Are you sure?' }, class: "btn btn-primary" %>
|
33
|
+
</div>
|
23
34
|
|
35
|
+
</div>
|
36
|
+
</div>
|
37
|
+
</div>
|
24
38
|
</div>
|
25
|
-
</
|
26
|
-
<!--
|
27
|
-
|
28
|
-
<div class="btn-group" role="group" aria-label="author_button_group">
|
29
|
-
<%= link_to 'Edit', edit_script_listing_author_path(@script_author), class: "btn btn-primary" %>
|
30
|
-
<%= link_to 'Destroy', script_listing_author_path(@script_author), method: :delete, data: { confirm: 'Are you sure?' }, class: "btn btn-primary" %>
|
31
|
-
</div>
|
39
|
+
</section>
|
40
|
+
<!-- Main Content -->
|
@@ -1,7 +1,9 @@
|
|
1
1
|
<%= form_for(script_extension) do |f| %>
|
2
2
|
|
3
|
+
<!-- PHCNotifi Render Validation -->
|
3
4
|
<%= render 'phcnotifi/validations', :object => @script_extension %>
|
4
5
|
|
6
|
+
<!-- Form Input Fields -->
|
5
7
|
<div class="form-group field_with_error">
|
6
8
|
<%= f.label :scriptextensionname, "Extension Name" %>
|
7
9
|
<%= f.text_field :scriptextensionname, placeholder: "Extension Name", class: "form-control" %>
|
@@ -14,9 +16,12 @@
|
|
14
16
|
<%= f.label :scriptextension, "Script Extension" %>
|
15
17
|
<%= f.text_field :scriptextension, placeholder: "Script Extension (.js/.css)", class: "form-control" %>
|
16
18
|
</div>
|
19
|
+
<!-- Form Input Fields -->
|
17
20
|
|
21
|
+
<!-- Form Submition Button -->
|
18
22
|
<div class="actions">
|
19
23
|
<%= f.submit class: "btn btn-primary" %>
|
20
24
|
</div>
|
25
|
+
<!-- For Submition Button -->
|
21
26
|
|
22
27
|
<% end %>
|
@@ -1,37 +1,38 @@
|
|
1
1
|
<!-- Title System -->
|
2
2
|
<% phc_title "Script Listings Manager" %>
|
3
3
|
<% phc_title_tagline "Update Script Extension" %>
|
4
|
+
<% phc_breadcrumb_one link_to "Script Extension Index", phcscriptcdnpro.script_extensions_path %>
|
5
|
+
<% phc_breadcrumb_two yield(:phc_title_tagline) %>
|
4
6
|
<!-- Title System -->
|
5
7
|
|
6
|
-
<!-- Page
|
7
|
-
<
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
<
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
<!-- Page Title -->
|
18
|
-
<h3 class="page-title">
|
19
|
-
<%= yield(:phc_title) %> </br>
|
20
|
-
<small><%= yield(:phc_title_tagline) %></small>
|
21
|
-
</h3>
|
22
|
-
<!-- Page Title -->
|
23
|
-
|
24
|
-
</div>
|
25
|
-
</div>
|
26
|
-
<!-- Page Header -->
|
8
|
+
<!-- Page Title Bar -->
|
9
|
+
<section class="content-header">
|
10
|
+
<!-- Page Title and BreadCrumb -->
|
11
|
+
<h1><%= yield(:phc_title) %> <small><%= yield(:phc_title_tagline) %></small></h1>
|
12
|
+
<ol class="breadcrumb">
|
13
|
+
<li><%= yield(:phc_breadcrumb_one) %></li>
|
14
|
+
<li class="active"><%= yield(:phc_breadcrumb_two) %></li>
|
15
|
+
</ol>
|
16
|
+
<!-- Page Title and BreadCrumb -->
|
17
|
+
</section>
|
18
|
+
<!-- Page Title Bar -->
|
27
19
|
|
28
20
|
<!-- Main Content -->
|
29
|
-
<
|
30
|
-
<div class="
|
21
|
+
<section class="content">
|
22
|
+
<div class="row">
|
23
|
+
<div class="col-lg-12">
|
24
|
+
<div class="box">
|
25
|
+
<div class="box-header with-border">
|
26
|
+
<h3 class="box-title"><%= yield(:phc_title) %></h3>
|
27
|
+
</div>
|
28
|
+
<div class="box-body">
|
31
29
|
|
32
|
-
|
33
|
-
|
30
|
+
<!-- Form Requries URL to Function Properly -->
|
31
|
+
<%= render 'form', script_extension: @script_extension %>
|
34
32
|
|
33
|
+
</div>
|
34
|
+
</div>
|
35
|
+
</div>
|
35
36
|
</div>
|
36
|
-
</
|
37
|
-
<!-- Main Content -->
|
37
|
+
</section>
|
38
|
+
<!-- Main Content -->
|
@@ -1,54 +1,55 @@
|
|
1
1
|
<!-- Title System -->
|
2
2
|
<% phc_title "Script Listings Manager" %>
|
3
3
|
<% phc_title_tagline "Script Extension Index" %>
|
4
|
+
<% phc_breadcrumb_one yield(:phc_title_tagline) %>
|
4
5
|
<!-- Title System -->
|
5
6
|
|
6
|
-
<!-- Page
|
7
|
-
<
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
<
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
<h3 class="page-title">
|
18
|
-
<%= yield(:phc_title) %> </br>
|
19
|
-
<small><%= yield(:phc_title_tagline) %></small>
|
20
|
-
</h3>
|
21
|
-
<!-- Page Title -->
|
22
|
-
|
23
|
-
</div>
|
24
|
-
</div>
|
25
|
-
<!-- Page Header -->
|
7
|
+
<!-- Page Title Bar -->
|
8
|
+
<section class="content-header">
|
9
|
+
<!-- Page Title and BreadCrumb -->
|
10
|
+
<h1><%= yield(:phc_title) %> <small><%= yield(:phc_title_tagline) %></small></h1>
|
11
|
+
<ol class="breadcrumb">
|
12
|
+
<li><%= yield(:phc_breadcrumb_one) %></li>
|
13
|
+
<li class="active"><%= yield(:phc_breadcrumb_two) %></li>
|
14
|
+
</ol>
|
15
|
+
<!-- Page Title and BreadCrumb -->
|
16
|
+
</section>
|
17
|
+
<!-- Page Title Bar -->
|
26
18
|
|
27
19
|
<!-- Main Content -->
|
28
|
-
<
|
29
|
-
<div class="
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
20
|
+
<section class="content">
|
21
|
+
<div class="row">
|
22
|
+
<div class="col-lg-12">
|
23
|
+
<div class="box">
|
24
|
+
<div class="box-header with-border">
|
25
|
+
<h3 class="box-title"><%= yield(:phc_title) %></h3>
|
26
|
+
</div>
|
27
|
+
<div class="box-body">
|
28
|
+
|
29
|
+
<!-- Table Index -->
|
30
|
+
<table class="table table-striped table-bordered table-advance table-hover">
|
31
|
+
<thead>
|
32
|
+
<tr>
|
33
|
+
<th>Script Extension Name</th>
|
34
|
+
<th>Script Extension</th>
|
35
|
+
</tr>
|
36
|
+
</thead>
|
37
|
+
<tbody>
|
38
|
+
<% @script_extensions.each do |script_extension| %>
|
39
|
+
<tr>
|
40
|
+
<td><%= link_to script_extension.scriptextensionname, script_extension %></td>
|
41
|
+
<td><%= link_to script_extension.scriptextension, script_extension %></td>
|
42
|
+
</tr>
|
43
|
+
<% end %>
|
44
|
+
</tbody>
|
45
|
+
</table>
|
46
|
+
<!-- Table Index -->
|
47
|
+
|
48
|
+
<%= link_to 'New Script Extension', new_script_extension_path, class: "btn btn-primary" %>
|
49
|
+
|
50
|
+
</div>
|
51
|
+
</div>
|
52
|
+
</div>
|
52
53
|
</div>
|
53
|
-
</
|
54
|
+
</section>
|
54
55
|
<!-- Main Content -->
|