phcscriptcdn 4.3.2 → 4.3.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/app/views/phcscriptcdn/script/authors/_form.html.erb +6 -1
  3. data/app/views/phcscriptcdn/script/authors/edit.html.erb +28 -27
  4. data/app/views/phcscriptcdn/script/authors/index.html.erb +52 -51
  5. data/app/views/phcscriptcdn/script/authors/new.html.erb +28 -27
  6. data/app/views/phcscriptcdn/script/authors/show.html.erb +31 -22
  7. data/app/views/phcscriptcdn/script/extensions/_form.html.erb +5 -0
  8. data/app/views/phcscriptcdn/script/extensions/edit.html.erb +28 -27
  9. data/app/views/phcscriptcdn/script/extensions/index.html.erb +46 -45
  10. data/app/views/phcscriptcdn/script/extensions/new.html.erb +28 -27
  11. data/app/views/phcscriptcdn/script/extensions/show.html.erb +31 -23
  12. data/app/views/phcscriptcdn/script/licences/_form.html.erb +7 -1
  13. data/app/views/phcscriptcdn/script/licences/edit.html.erb +29 -28
  14. data/app/views/phcscriptcdn/script/licences/index.html.erb +54 -53
  15. data/app/views/phcscriptcdn/script/licences/new.html.erb +29 -28
  16. data/app/views/phcscriptcdn/script/licences/show.html.erb +31 -22
  17. data/app/views/phcscriptcdn/script/listings/_form.html.erb +6 -1
  18. data/app/views/phcscriptcdn/script/listings/edit.html.erb +28 -27
  19. data/app/views/phcscriptcdn/script/listings/index.html.erb +48 -47
  20. data/app/views/phcscriptcdn/script/listings/new.html.erb +28 -27
  21. data/app/views/phcscriptcdn/script/listings/show.html.erb +29 -28
  22. data/app/views/phcscriptcdn/script/urls/_form.html.erb +6 -1
  23. data/app/views/phcscriptcdn/script/urls/edit.html.erb +27 -27
  24. data/app/views/phcscriptcdn/script/urls/index.html.erb +46 -46
  25. data/app/views/phcscriptcdn/script/urls/new.html.erb +28 -28
  26. data/app/views/phcscriptcdn/script/urls/show.html.erb +30 -30
  27. data/app/views/phcscriptcdn/script/versions/_form.html.erb +6 -1
  28. data/app/views/phcscriptcdn/script/versions/edit.html.erb +28 -27
  29. data/app/views/phcscriptcdn/script/versions/index.html.erb +43 -43
  30. data/app/views/phcscriptcdn/script/versions/new.html.erb +28 -27
  31. data/app/views/phcscriptcdn/script/versions/show.html.erb +30 -29
  32. data/lib/phcscriptcdn/version.rb +1 -1
  33. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 59590732577e48845fa75e3ebc74fd2d07fbdc5c
4
- data.tar.gz: e49981662355458e9ff4fe9f928d36fe7aafb187
3
+ metadata.gz: 880818932f655c7a70de8b047fcf175de29c68a4
4
+ data.tar.gz: e40e3df71adbf7a33bb19f74144ed4eff85bb166
5
5
  SHA512:
6
- metadata.gz: 5ce8b6798780e7272d47c9461c655b7d46c27de720dafa8c4d682fa93ff85664c2ce5946cefb873b0ceb7139edd0201bc5396a43507ae6c517d4754313e46040
7
- data.tar.gz: 7d9db83faa5d0b4ff9535490a55a01fa517d03ef1969f575dd933c26337ca69c1eb533b0afe0ee72c09a64535f9187fc345b4d720832c59e2691ae254092090a
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 Header -->
7
- <div class="row">
8
- <div class="col-lg-12">
9
-
10
- <!-- Bread Crumbs -->
11
- <ol class="breadcrumb">
12
- <li><%= link_to "Author Index", phcscriptcdn.script_authors_path %></li>
13
- <li class="active"><%= yield(:phc_title_tagline) %></li>
14
- </ol>
15
- <!-- Bread Crumbs -->
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
- <div class="row">
30
- <div class="col-lg-12">
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
- <!-- Form Requries URL to Function Properly -->
33
- <%= render 'form', script_author: @script_author %>
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
- </div>
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 Header -->
7
- <div class="row">
8
- <div class="col-lg-12">
9
-
10
- <!-- Bread Crumbs -->
11
- <ol class="breadcrumb">
12
- <li class="active"><%= yield(:phc_title_tagline) %></li>
13
- </ol>
14
- <!-- Bread Crumbs -->
15
-
16
- <!-- Page Title -->
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
- <div class="row">
29
- <div class="col-lg-12">
30
-
31
- <!-- Table Index -->
32
- <table class="table table-striped table-bordered table-advance table-hover">
33
- <thead>
34
- <tr>
35
- <th>First Name</th>
36
- <th>Last Name</th>
37
- <th>Website</th>
38
- <th>Github</th>
39
- <th>Twitter</th>
40
- </tr>
41
- </thead>
42
- <tbody>
43
- <% @script_authors.each do |script_author| %>
44
- <tr>
45
- <td><%= link_to script_author.authorfirstname, script_author %></td>
46
- <td><%= link_to script_author.authorlastname, script_author %></td>
47
- <td><%= link_to script_author.authorwebsite, script_author %></td>
48
- <td><%= link_to script_author.authorgithub, script_author %></td>
49
- <td><%= link_to script_author.authortwitter, script_author %></td>
50
- </tr>
51
- <% end %>
52
- </tbody>
53
- </table>
54
- <!-- Table Index -->
55
-
56
- <%= link_to 'New Script Author', new_script_listing_author_path, class: "btn btn-primary" %>
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
- </div>
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 Header -->
7
- <div class="row">
8
- <div class="col-lg-12">
9
-
10
- <!-- Bread Crumbs -->
11
- <ol class="breadcrumb">
12
- <li><%= link_to "Author Index", phcscriptcdn.script_authors_path %></li>
13
- <li class="active"><%= yield(:phc_title_tagline) %></li>
14
- </ol>
15
- <!-- Bread Crumbs -->
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
- <div class="row">
30
- <div class="col-lg-12">
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
- <!-- Form Requries URL to Function Properly -->
33
- <%= render 'form', script_author: @script_author %>
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
- </div>
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 Header -->
7
- <div class="row">
8
- <div class="col-lg-12">
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
- <!-- Bread Crumbs -->
11
- <ol class="breadcrumb">
12
- <li><%= link_to "Author Index", phcscriptcdn.script_authors_path %></li>
13
- <li class="active"><%= yield(:phc_title_tagline) %></li>
14
- </ol>
15
- <!-- Bread Crumbs -->
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
- <!-- Page Title -->
18
- <h3 class="page-title">
19
- <%= yield(:phc_title) %> </br>
20
- <small><%= yield(:phc_title_tagline) %></small>
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
- </div>
26
- <!-- Page Header -->
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 Header -->
7
- <div class="row">
8
- <div class="col-lg-12">
9
-
10
- <!-- Bread Crumbs -->
11
- <ol class="breadcrumb">
12
- <li><%= link_to "Script Extension Index", phcscriptcdn.script_extensions_path %></li>
13
- <li class="active"><%= yield(:phc_title_tagline) %></li>
14
- </ol>
15
- <!-- Bread Crumbs -->
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
- <div class="row">
30
- <div class="col-lg-12">
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
- <!-- Form Requries URL to Function Properly -->
33
- <%= render 'form', script_extension: @script_extension %>
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
- </div>
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 Header -->
7
- <div class="row">
8
- <div class="col-lg-12">
9
-
10
- <!-- Bread Crumbs -->
11
- <ol class="breadcrumb">
12
- <li class="active"><%= yield(:phc_title_tagline) %></li>
13
- </ol>
14
- <!-- Bread Crumbs -->
15
-
16
- <!-- Page Title -->
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
- <div class="row">
29
- <div class="col-lg-12">
30
-
31
- <!-- Table Index -->
32
- <table class="table table-striped table-bordered table-advance table-hover">
33
- <thead>
34
- <tr>
35
- <th>Script Extension Name</th>
36
- <th>Script Extension</th>
37
- </tr>
38
- </thead>
39
- <tbody>
40
- <% @script_extensions.each do |script_extension| %>
41
- <tr>
42
- <td><%= link_to script_extension.scriptextensionname, script_extension %></td>
43
- <td><%= link_to script_extension.scriptextension, script_extension %></td>
44
- </tr>
45
- <% end %>
46
- </tbody>
47
- </table>
48
- <!-- Table Index -->
49
-
50
- <%= link_to 'New Script Extension', new_script_extension_path, class: "btn btn-primary" %>
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
- </div>
54
+ </section>
54
55
  <!-- Main Content -->