phcdevworks_scripts 8.2.0 → 9.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. checksums.yaml +4 -4
  2. data/MIT-LICENSE +20 -20
  3. data/README.md +3 -1
  4. data/Rakefile +8 -8
  5. data/app/assets/config/phcdevworks_scripts_manifest.js +2 -3
  6. data/app/controllers/phcdevworks_scripts/application_controller.rb +0 -0
  7. data/app/controllers/phcdevworks_scripts/script/authors_controller.rb +0 -0
  8. data/app/controllers/phcdevworks_scripts/script/extensions_controller.rb +0 -0
  9. data/app/controllers/phcdevworks_scripts/script/listings_controller.rb +0 -0
  10. data/app/controllers/phcdevworks_scripts/script/urls_controller.rb +0 -0
  11. data/app/controllers/phcdevworks_scripts/script/versions_controller.rb +0 -0
  12. data/app/controllers/phcdevworks_scripts/snippet/posts_controller.rb +0 -0
  13. data/app/controllers/phcdevworks_scripts/snippet/urls_controller.rb +0 -0
  14. data/app/helpers/phcdevworks_scripts/application_helper.rb +0 -0
  15. data/app/helpers/phcdevworks_scripts/script/authors_helper.rb +0 -0
  16. data/app/helpers/phcdevworks_scripts/script/extensions_helper.rb +0 -0
  17. data/app/helpers/phcdevworks_scripts/script/listings_helper.rb +0 -0
  18. data/app/helpers/phcdevworks_scripts/script/urls_helper.rb +0 -0
  19. data/app/helpers/phcdevworks_scripts/script/versions_helper.rb +0 -0
  20. data/app/helpers/phcdevworks_scripts/snippet/posts_helper.rb +0 -0
  21. data/app/helpers/phcdevworks_scripts/snippet/urls_helper.rb +0 -0
  22. data/app/jobs/phcdevworks_scripts/application_job.rb +0 -0
  23. data/app/mailers/phcdevworks_scripts/application_mailer.rb +0 -0
  24. data/app/models/phcdevworks_scripts/application_record.rb +0 -0
  25. data/app/models/phcdevworks_scripts/script/author.rb +0 -0
  26. data/app/models/phcdevworks_scripts/script/extension.rb +0 -0
  27. data/app/models/phcdevworks_scripts/script/listing.rb +0 -0
  28. data/app/models/phcdevworks_scripts/script/url.rb +0 -0
  29. data/app/models/phcdevworks_scripts/script/version.rb +0 -0
  30. data/app/models/phcdevworks_scripts/script.rb +0 -0
  31. data/app/models/phcdevworks_scripts/script_author_versions.rb +0 -0
  32. data/app/models/phcdevworks_scripts/script_extension_versions.rb +0 -0
  33. data/app/models/phcdevworks_scripts/script_listing_versions.rb +0 -0
  34. data/app/models/phcdevworks_scripts/script_url_versions.rb +0 -0
  35. data/app/models/phcdevworks_scripts/script_version_versions.rb +0 -0
  36. data/app/models/phcdevworks_scripts/snippet/post.rb +0 -0
  37. data/app/models/phcdevworks_scripts/snippet/url.rb +0 -0
  38. data/app/models/phcdevworks_scripts/snippet.rb +0 -0
  39. data/app/models/phcdevworks_scripts/snippet_post_versions.rb +0 -0
  40. data/app/models/phcdevworks_scripts/snippet_url_versions.rb +0 -0
  41. data/app/views/layouts/phcdevworks_scripts/application.html.erb +73 -131
  42. data/app/views/layouts/phcdevworks_scripts/components/backend/footer/_footer.html.erb +10 -9
  43. data/app/views/layouts/phcdevworks_scripts/components/backend/navigation/_top_menu.html.erb +26 -25
  44. data/app/views/layouts/phcdevworks_scripts/components/backend/sidebars/_side_menu.html.erb +491 -349
  45. data/app/views/phcdevworks_scripts/script/authors/_form.html.erb +16 -16
  46. data/app/views/phcdevworks_scripts/script/authors/edit.html.erb +23 -31
  47. data/app/views/phcdevworks_scripts/script/authors/index.html.erb +50 -58
  48. data/app/views/phcdevworks_scripts/script/authors/new.html.erb +23 -31
  49. data/app/views/phcdevworks_scripts/script/authors/show.html.erb +13 -13
  50. data/app/views/phcdevworks_scripts/script/extensions/_form.html.erb +14 -14
  51. data/app/views/phcdevworks_scripts/script/extensions/edit.html.erb +23 -31
  52. data/app/views/phcdevworks_scripts/script/extensions/index.html.erb +46 -54
  53. data/app/views/phcdevworks_scripts/script/extensions/new.html.erb +23 -31
  54. data/app/views/phcdevworks_scripts/script/extensions/show.html.erb +13 -13
  55. data/app/views/phcdevworks_scripts/script/listings/_form.html.erb +29 -29
  56. data/app/views/phcdevworks_scripts/script/listings/edit.html.erb +23 -31
  57. data/app/views/phcdevworks_scripts/script/listings/index.html.erb +50 -58
  58. data/app/views/phcdevworks_scripts/script/listings/new.html.erb +23 -31
  59. data/app/views/phcdevworks_scripts/script/listings/show.html.erb +13 -13
  60. data/app/views/phcdevworks_scripts/script/urls/_form.html.erb +18 -18
  61. data/app/views/phcdevworks_scripts/script/urls/edit.html.erb +27 -35
  62. data/app/views/phcdevworks_scripts/script/urls/index.html.erb +48 -56
  63. data/app/views/phcdevworks_scripts/script/urls/new.html.erb +23 -31
  64. data/app/views/phcdevworks_scripts/script/urls/show.html.erb +13 -13
  65. data/app/views/phcdevworks_scripts/script/versions/_form.html.erb +10 -10
  66. data/app/views/phcdevworks_scripts/script/versions/edit.html.erb +23 -31
  67. data/app/views/phcdevworks_scripts/script/versions/index.html.erb +43 -51
  68. data/app/views/phcdevworks_scripts/script/versions/new.html.erb +23 -31
  69. data/app/views/phcdevworks_scripts/script/versions/show.html.erb +13 -13
  70. data/app/views/phcdevworks_scripts/snippet/posts/_form.html.erb +12 -12
  71. data/app/views/phcdevworks_scripts/snippet/posts/edit.html.erb +23 -31
  72. data/app/views/phcdevworks_scripts/snippet/posts/index.html.erb +54 -62
  73. data/app/views/phcdevworks_scripts/snippet/posts/new.html.erb +23 -31
  74. data/app/views/phcdevworks_scripts/snippet/posts/show.html.erb +25 -25
  75. data/app/views/phcdevworks_scripts/snippet/urls/_form.html.erb +10 -10
  76. data/app/views/phcdevworks_scripts/snippet/urls/edit.html.erb +23 -31
  77. data/app/views/phcdevworks_scripts/snippet/urls/index.html.erb +52 -60
  78. data/app/views/phcdevworks_scripts/snippet/urls/new.html.erb +23 -31
  79. data/app/views/phcdevworks_scripts/snippet/urls/show.html.erb +25 -25
  80. data/config/routes.rb +0 -4
  81. data/config/spring.rb +0 -0
  82. data/db/migrate/20170517064030_create_phcdevworks_scripts_script_extension_versions.rb +1 -1
  83. data/db/migrate/20170517064049_create_phcdevworks_scripts_script_listing_versions.rb +1 -1
  84. data/db/migrate/20170517064114_create_phcdevworks_scripts_script_version_versions.rb +1 -1
  85. data/db/migrate/20170517064150_create_phcdevworks_scripts_script_url_versions.rb +1 -1
  86. data/db/migrate/20170517064208_create_phcdevworks_scripts_script_author_versions.rb +1 -1
  87. data/db/migrate/20190818022002_create_phcdevworks_scripts_snippet_posts.rb +1 -1
  88. data/db/migrate/20190818022024_create_phcdevworks_scripts_snippet_urls.rb +1 -1
  89. data/db/migrate/20190818022939_create_phcdevworks_scripts_script_authors.rb +1 -1
  90. data/db/migrate/20190818023353_create_phcdevworks_scripts_script_listings.rb +1 -1
  91. data/db/migrate/20190818023709_create_phcdevworks_scripts_script_extensions.rb +1 -1
  92. data/db/migrate/20190818023911_create_phcdevworks_scripts_script_urls.rb +1 -1
  93. data/db/migrate/20190818031653_create_phcdevworks_scripts_script_versions.rb +1 -1
  94. data/db/migrate/20191102092649_create_phcdevworks_scripts_snippet_url_versions.rb +1 -1
  95. data/db/migrate/20191102092711_create_phcdevworks_scripts_snippet_post_versions.rb +1 -1
  96. data/lib/phcdevworks_scripts/engine.rb +47 -47
  97. data/lib/phcdevworks_scripts/version.rb +1 -1
  98. data/lib/phcdevworks_scripts.rb +6 -6
  99. data/lib/tasks/phcdevworks_scripts_tasks.rake +4 -4
  100. metadata +34 -85
  101. data/app/assets/stylesheets/phcdevworks_scripts/application.scss +0 -15
  102. data/app/assets/stylesheets/phcdevworks_scripts/script/authors.scss +0 -3
  103. data/app/assets/stylesheets/phcdevworks_scripts/script/extensions.scss +0 -3
  104. data/app/assets/stylesheets/phcdevworks_scripts/script/listings.scss +0 -3
  105. data/app/assets/stylesheets/phcdevworks_scripts/script/urls.scss +0 -3
  106. data/app/assets/stylesheets/phcdevworks_scripts/script/versions.scss +0 -3
  107. data/app/assets/stylesheets/phcdevworks_scripts/snippet/posts.scss +0 -3
  108. data/app/assets/stylesheets/phcdevworks_scripts/snippet/urls.scss +0 -3
@@ -1,60 +1,52 @@
1
- <!-- PHCTitleSEO Title Variables -->
1
+ <!-- -PHCDEV- Title Variables -->
2
2
  <% phc_title "Script Listings Manager" %>
3
3
  <% phc_title_tagline "Update Script URL Information" %>
4
4
  <% phc_breadcrumb_one link_to "Script Urls", phcdevworks_scripts.script_listing_urls_path %>
5
5
  <% phc_breadcrumb_two yield(:phc_title_tagline) %>
6
- <!-- PHCTitleSEO Title Variables -->
6
+ <!-- -PHCDEV- Title Variables -->
7
7
 
8
- <!-- Page Bradcrumbs -->
9
- <ol class="breadcrumb pull-right">
8
+ <!-- -PHCDEV- Bradcrumbs -->
9
+ <ol class="breadcrumb float-xl-end">
10
10
  <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
11
11
  <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li>
12
12
  </ol>
13
- <!-- Page Bradcrumbs -->
13
+ <!-- -PHCDEV- Bradcrumbs -->
14
14
 
15
- <!-- Page Header -->
16
- <h2 class="page-header"><%= yield(:phc_title) %></h2>
17
- <!-- Page Header -->
15
+ <!-- -PHCDEV- Header -->
16
+ <h1 class="page-header"><%= yield(:phc_title) %></h1>
17
+ <!-- -PHCDEV- Header -->
18
18
 
19
- <!-- Page Content -->
19
+ <!-- -PHCDEV- Page Content -->
20
20
  <div class="row">
21
21
  <div class="col-lg-12">
22
22
 
23
- <!-- Panel -->
23
+ <!-- -PHCDEV- Panel -->
24
24
  <div class="panel panel-inverse">
25
25
 
26
- <!-- Panel - Heading -->
26
+ <!-- -PHCDEV- Panel - Heading -->
27
27
  <div class="panel-heading">
28
28
  <h4 class="panel-title"><%= yield(:phc_title) %></h4>
29
29
  </div>
30
- <!-- Page Header -->
30
+ <!-- -PHCDEV- Header -->
31
31
 
32
- <!-- Page Content -->
33
- <div class="row">
34
- <div class="col-lg-12">
35
-
36
- <!-- Panel -->
37
- <div class="panel panel-inverse">
38
-
39
- <!-- Panel - Heading -->
40
- <div class="panel-heading">
41
- <h4 class="panel-title"><%= yield(:phc_title) %></h4>
42
- </div>
43
- <!-- Panel - Heading -->
44
-
45
- <!-- Panel - Body -->
46
- <div class="panel-body">
32
+ <!-- -PHCDEV- Panel -->
33
+ <div class="panel panel-inverse">
47
34
 
48
- <!-- Edit Form -->
49
- <%= render "form", { form_url: script_listing_url_path } %>
50
- <!-- Edit Form -->
35
+ <!-- -PHCDEV- Panel - Heading -->
36
+ <div class="panel-heading">
37
+ <h4 class="panel-title"><%= yield(:phc_title) %></h4>
38
+ </div>
39
+ <!-- -PHCDEV- Panel - Heading -->
51
40
 
52
- </div>
53
- <!-- Panel - Body -->
41
+ <!-- -PHCDEV- Panel - Body -->
42
+ <div class="panel-body">
54
43
 
55
- </div>
56
- <!-- Panel -->
44
+ <!-- -PHCDEV- Edit Form -->
45
+ <%= render "form", { form_url: script_listing_url_path } %>
46
+ <!-- -PHCDEV- Edit Form -->
57
47
 
58
48
  </div>
49
+ <!-- -PHCDEV- Panel - Body -->
50
+
59
51
  </div>
60
- <!-- Page Content -->
52
+ <!-- -PHCDEV- Panel -->
@@ -1,76 +1,68 @@
1
- <!-- PHCTitleSEO Title Variables -->
1
+ <!-- -PHCDEV- Title Variables -->
2
2
  <% phc_title "Script Listings Manager" %>
3
3
  <% phc_title_tagline "Script URL Index" %>
4
4
  <% phc_breadcrumb_one link_to "Script Index", phcdevworks_scripts.script_listings_path %>
5
5
  <% phc_breadcrumb_two yield(:phc_title_tagline) %>
6
- <!-- PHCTitleSEO Title Variables -->
6
+ <!-- -PHCDEV- Title Variables -->
7
7
 
8
- <!-- Page Bradcrumbs -->
9
- <ol class="breadcrumb pull-right">
8
+ <!-- -PHCDEV- Bradcrumbs -->
9
+ <ol class="breadcrumb float-xl-end">
10
10
  <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
11
11
  <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li>
12
12
  </ol>
13
- <!-- Page Bradcrumbs -->
13
+ <!-- -PHCDEV- Bradcrumbs -->
14
14
 
15
- <!-- Page Header -->
16
- <h2 class="page-header"><%= yield(:phc_title) %></h2>
17
- <!-- Page Header -->
15
+ <!-- -PHCDEV- Header -->
16
+ <h1 class="page-header"><%= yield(:phc_title) %></h1>
17
+ <!-- -PHCDEV- Header -->
18
18
 
19
- <!-- Page Content -->
20
- <div class="row">
21
- <div class="col-lg-12">
19
+ <!-- -PHCDEV- Panel -->
20
+ <div class="panel panel-inverse">
22
21
 
23
- <!-- Panel -->
24
- <div class="panel panel-inverse">
25
-
26
- <!-- Panel - Heading -->
27
- <div class="panel-heading">
28
- <h4 class="panel-title"><%= yield(:phc_title) %></h4>
29
- </div>
30
- <!-- Panel - Heading -->
31
-
32
- <!-- Panel - Body -->
33
- <div class="panel-body">
34
-
35
- <!-- Index - Table -->
36
- <div class="table-responsive">
37
- <table class="table table-striped table-bordered">
38
-
39
- <thead>
40
- <tr>
41
- <th>Script URL</th>
42
- <th>Release Date</th>
43
- <th>CDN Update Date</th>
44
- </tr>
45
- </thead>
22
+ <!-- -PHCDEV- Panel - Heading -->
23
+ <div class="panel-heading">
24
+ <h4 class="panel-title"><%= yield(:phc_title) %></h4>
25
+ </div>
26
+ <!-- -PHCDEV- Panel - Heading -->
46
27
 
47
- <tbody>
48
- <% @script_urls.each do |script_url| %>
49
- <tr>
50
- <td><%= link_to script_url.cdn_url, script_listing_url_path(script_url.listing, script_url) %></td>
51
- <td><%= link_to script_url.cdn_url_release, script_listing_url_path(script_url.listing, script_url) %></td>
52
- <td><%= link_to script_url.cdn_url_cdn_update, script_listing_url_path(script_url.listing, script_url) %></td>
53
- </tr>
54
- <% end %>
55
- </tbody>
28
+ <!-- -PHCDEV- Panel - Body -->
29
+ <div class="panel-body">
56
30
 
57
- </table>
58
- </div>
59
- <!-- Index - Table -->
31
+ <!-- -PHCDEV- Index - Table -->
32
+ <div class="table-responsive">
33
+ <table class="table table-striped table-bordered">
60
34
 
61
- <!-- New Button -->
62
- <%= link_to phcdevworks_scripts.new_script_listing_url_path, class: "btn btn-primary" do %>
63
- <i class="fad fa-plus-circle"></i>
64
- Add a New CDN URL
65
- <% end %>
66
- <!-- New Button -->
35
+ <thead>
36
+ <tr>
37
+ <th>Script URL</th>
38
+ <th>Release Date</th>
39
+ <th>CDN Update Date</th>
40
+ </tr>
41
+ </thead>
67
42
 
68
- </div>
69
- <!-- Panel - Body -->
43
+ <tbody>
44
+ <% @script_urls.each do |script_url| %>
45
+ <tr>
46
+ <td><%= link_to script_url.cdn_url, script_listing_url_path(script_url.listing, script_url) %></td>
47
+ <td><%= link_to script_url.cdn_url_release, script_listing_url_path(script_url.listing, script_url) %></td>
48
+ <td><%= link_to script_url.cdn_url_cdn_update, script_listing_url_path(script_url.listing, script_url) %></td>
49
+ </tr>
50
+ <% end %>
51
+ </tbody>
70
52
 
53
+ </table>
71
54
  </div>
72
- <!-- Panel -->
55
+ <!-- -PHCDEV- Index - Table -->
56
+
57
+ <!-- -PHCDEV- New Button -->
58
+ <%= link_to phcdevworks_scripts.new_script_listing_url_path, class: "btn btn-primary" do %>
59
+ <i class="fad fa-plus-circle"></i>
60
+ Add a New CDN URL
61
+ <% end %>
62
+ <!-- -PHCDEV- New Button -->
73
63
 
74
64
  </div>
65
+ <!-- -PHCDEV- Panel - Body -->
66
+
75
67
  </div>
76
- <!-- Page Content -->
68
+ <!-- -PHCDEV- Panel -->
@@ -1,49 +1,41 @@
1
- <!-- PHCTitleSEO Title Variables -->
1
+ <!-- -PHCDEV- Title Variables -->
2
2
  <% phc_title "Script Listings Manager" %>
3
3
  <% phc_title_tagline "Create a New Script URL" %>
4
4
  <% phc_breadcrumb_one link_to "Script Index", phcdevworks_scripts.script_listings_path %>
5
5
  <% phc_breadcrumb_two link_to "Script Urls", phcdevworks_scripts.script_listing_urls_path %>
6
6
  <% phc_breadcrumb_three yield(:phc_title_tagline) %>
7
- <!-- PHCTitleSEO Title Variables -->
7
+ <!-- -PHCDEV- Title Variables -->
8
8
 
9
- <!-- Page Bradcrumbs -->
10
- <ol class="breadcrumb pull-right">
9
+ <!-- -PHCDEV- Bradcrumbs -->
10
+ <ol class="breadcrumb float-xl-end">
11
11
  <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
12
12
  <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_two) %></li>
13
13
  <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_three) %></li>
14
14
  </ol>
15
- <!-- Page Bradcrumbs -->
15
+ <!-- -PHCDEV- Bradcrumbs -->
16
16
 
17
- <!-- Page Header -->
18
- <h2 class="page-header"><%= yield(:phc_title) %></h2>
19
- <!-- Page Header -->
17
+ <!-- -PHCDEV- Header -->
18
+ <h1 class="page-header"><%= yield(:phc_title) %></h1>
19
+ <!-- -PHCDEV- Header -->
20
20
 
21
- <!-- Page Content -->
22
- <div class="row">
23
- <div class="col-lg-12">
21
+ <!-- -PHCDEV- Panel -->
22
+ <div class="panel panel-inverse">
24
23
 
25
- <!-- Panel -->
26
- <div class="panel panel-inverse">
27
-
28
- <!-- Panel - Heading -->
29
- <div class="panel-heading">
30
- <h4 class="panel-title"><%= yield(:phc_title) %></h4>
31
- </div>
32
- <!-- Panel - Heading -->
33
-
34
- <!-- Panel - Body -->
35
- <div class="panel-body">
36
-
37
- <!-- New Form -->
38
- <%= render "form", { form_url: script_listing_urls_path } %>
39
- <!-- New Form -->
24
+ <!-- -PHCDEV- Panel - Heading -->
25
+ <div class="panel-heading">
26
+ <h4 class="panel-title"><%= yield(:phc_title) %></h4>
27
+ </div>
28
+ <!-- -PHCDEV- Panel - Heading -->
40
29
 
41
- </div>
42
- <!-- Panel - Body -->
30
+ <!-- -PHCDEV- Panel - Body -->
31
+ <div class="panel-body">
43
32
 
44
- </div>
45
- <!-- Panel -->
33
+ <!-- -PHCDEV- New Form -->
34
+ <%= render "form", { form_url: script_listing_urls_path } %>
35
+ <!-- -PHCDEV- New Form -->
46
36
 
47
37
  </div>
38
+ <!-- -PHCDEV- Panel - Body -->
39
+
48
40
  </div>
49
- <!-- Page Content -->
41
+ <!-- -PHCDEV- Panel -->
@@ -1,27 +1,27 @@
1
- <!-- Title System -->
1
+ <!-- -PHCDEV- Title System -->
2
2
  <% phc_title "Script Listings Manager" %>
3
3
  <% phc_title_tagline "Script URL Details" %>
4
4
  <% phc_breadcrumb_one link_to "Script Index", phcdevworks_scripts.script_listings_path %>
5
5
  <% phc_breadcrumb_two link_to "Script Urls", phcdevworks_scripts.script_listing_urls_path %>
6
6
  <% phc_breadcrumb_three yield(:phc_title_tagline) %>
7
- <!-- Title System -->
7
+ <!-- -PHCDEV- Title System -->
8
8
 
9
- <!-- Page Bradcrumbs -->
10
- <ol class="breadcrumb pull-right">
9
+ <!-- -PHCDEV- Bradcrumbs -->
10
+ <ol class="breadcrumb float-xl-end">
11
11
  <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
12
12
  <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_two) %></li>
13
13
  <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_three) %></li>
14
14
  </ol>
15
- <!-- Page Bradcrumbs -->
15
+ <!-- -PHCDEV- Bradcrumbs -->
16
16
 
17
- <!-- Page Header -->
17
+ <!-- -PHCDEV- Header -->
18
18
  <h1 class="page-header"><%= yield(:phc_title) %></h1>
19
- <!-- Page Header -->
19
+ <!-- -PHCDEV- Header -->
20
20
 
21
- <!-- Page Content -->
21
+ <!-- -PHCDEV- Page Content -->
22
22
  <div class="row">
23
23
 
24
- <!-- Button Panel -->
24
+ <!-- -PHCDEV- Button Panel -->
25
25
  <div class="col-lg-4">
26
26
 
27
27
  <div class="panel panel-inverse">
@@ -38,12 +38,12 @@
38
38
  </div>
39
39
 
40
40
  </div>
41
- <!-- Button Panel -->
41
+ <!-- -PHCDEV- Button Panel -->
42
42
 
43
- <!-- Main Panel -->
43
+ <!-- -PHCDEV- Main Panel -->
44
44
  <div class="col-lg-8">
45
45
  </div>
46
- <!-- Main Panel -->
46
+ <!-- -PHCDEV- Main Panel -->
47
47
 
48
48
  </div>
49
- <!-- Page Content -->
49
+ <!-- -PHCDEV- Page Content -->
@@ -1,22 +1,22 @@
1
- <!-- Form - Script - Versions -->
1
+ <!-- -PHCDEV- Form - Script - Versions -->
2
2
  <%= form_with(model: script_version, local: true) do |form| %>
3
3
 
4
- <!-- PHCNotifi Render Validation -->
4
+ <!-- -PHCDEV- Form Validation -->
5
5
  <%= render "phcdevworks_notifications/bootstrap/validations", :object => @script_version %>
6
- <!-- PHCNotifi Render Validation -->
6
+ <!-- -PHCDEV- Form Validation -->
7
7
 
8
- <!-- Form Input Fields -->
9
- <div class="form-group field_with_errors">
10
- <%= form.label :script_version_number, "Version Number" %>
8
+ <!-- -PHCDEV- Form Input Fields -->
9
+ <div class="mb-3">
10
+ <%= form.label :script_version_number, "Version Number", class: "form-label" %>
11
11
  <%= form.text_field :script_version_number, placeholder: "Version Number", class: "form-control" %>
12
12
  </div>
13
- <!-- Form Input Fields -->
13
+ <!-- -PHCDEV- Form Input Fields -->
14
14
 
15
- <!-- Form Submition Button -->
15
+ <!-- -PHCDEV- Form Submition Button -->
16
16
  <div class="actions">
17
17
  <%= form.submit class: "btn btn-primary" %>
18
18
  </div>
19
- <!-- For Submition Button -->
19
+ <!-- -PHCDEV- For Submition Button -->
20
20
 
21
21
  <% end %>
22
- <!-- Form - Script - Versions -->
22
+ <!-- -PHCDEV- Form - Script - Versions -->
@@ -1,49 +1,41 @@
1
- <!-- PHCTitleSEO Title Variables -->
1
+ <!-- -PHCDEV- Title Variables -->
2
2
  <% phc_title "Script Listings Manager" %>
3
3
  <% phc_title_tagline "Update Script Version Information" %>
4
4
  <% phc_breadcrumb_one link_to "Script Index", phcdevworks_scripts.script_listings_path %>
5
5
  <% phc_breadcrumb_two link_to "Script Version Index", phcdevworks_scripts.script_versions_path %>
6
6
  <% phc_breadcrumb_three yield(:phc_title_tagline) %>
7
- <!-- PHCTitleSEO Title Variables -->
7
+ <!-- -PHCDEV- Title Variables -->
8
8
 
9
- <!-- Page Bradcrumbs -->
10
- <ol class="breadcrumb pull-right">
9
+ <!-- -PHCDEV- Bradcrumbs -->
10
+ <ol class="breadcrumb float-xl-end">
11
11
  <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
12
12
  <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_two) %></li>
13
13
  <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_three) %></li>
14
14
  </ol>
15
- <!-- Page Bradcrumbs -->
15
+ <!-- -PHCDEV- Bradcrumbs -->
16
16
 
17
- <!-- Page Header -->
18
- <h2 class="page-header"><%= yield(:phc_title) %></h2>
19
- <!-- Page Header -->
17
+ <!-- -PHCDEV- Header -->
18
+ <h1 class="page-header"><%= yield(:phc_title) %></h1>
19
+ <!-- -PHCDEV- Header -->
20
20
 
21
- <!-- Page Content -->
22
- <div class="row">
23
- <div class="col-lg-12">
21
+ <!-- -PHCDEV- Panel -->
22
+ <div class="panel panel-inverse">
24
23
 
25
- <!-- Panel -->
26
- <div class="panel panel-inverse">
27
-
28
- <!-- Panel - Heading -->
29
- <div class="panel-heading">
30
- <h4 class="panel-title"><%= yield(:phc_title) %></h4>
31
- </div>
32
- <!-- Panel - Heading -->
33
-
34
- <!-- Panel - Body -->
35
- <div class="panel-body">
36
-
37
- <!-- Edit Form -->
38
- <%= render "form", script_version: @script_version %>
39
- <!-- Edit Form -->
24
+ <!-- -PHCDEV- Panel - Heading -->
25
+ <div class="panel-heading">
26
+ <h4 class="panel-title"><%= yield(:phc_title) %></h4>
27
+ </div>
28
+ <!-- -PHCDEV- Panel - Heading -->
40
29
 
41
- </div>
42
- <!-- Panel - Body -->
30
+ <!-- -PHCDEV- Panel - Body -->
31
+ <div class="panel-body">
43
32
 
44
- </div>
45
- <!-- Panel -->
33
+ <!-- -PHCDEV- Edit Form -->
34
+ <%= render "form", script_version: @script_version %>
35
+ <!-- -PHCDEV- Edit Form -->
46
36
 
47
37
  </div>
38
+ <!-- -PHCDEV- Panel - Body -->
39
+
48
40
  </div>
49
- <!-- Page Content -->
41
+ <!-- -PHCDEV- Panel -->
@@ -1,72 +1,64 @@
1
- <!-- PHCTitleSEO Title Variables -->
1
+ <!-- -PHCDEV- Title Variables -->
2
2
  <% phc_title "Script Listings Manager" %>
3
3
  <% phc_title_tagline "Script Version Index" %>
4
4
  <% phc_breadcrumb_one link_to "Script Index", phcdevworks_scripts.script_listings_path %>
5
5
  <% phc_breadcrumb_two yield(:phc_title_tagline) %>
6
- <!-- PHCTitleSEO Title Variables -->
6
+ <!-- -PHCDEV- Title Variables -->
7
7
 
8
- <!-- Page Bradcrumbs -->
9
- <ol class="breadcrumb pull-right">
8
+ <!-- -PHCDEV- Bradcrumbs -->
9
+ <ol class="breadcrumb float-xl-end">
10
10
  <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
11
11
  <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li>
12
12
  </ol>
13
- <!-- Page Bradcrumbs -->
13
+ <!-- -PHCDEV- Bradcrumbs -->
14
14
 
15
- <!-- Page Header -->
16
- <h2 class="page-header"><%= yield(:phc_title) %></h2>
17
- <!-- Page Header -->
15
+ <!-- -PHCDEV- Header -->
16
+ <h1 class="page-header"><%= yield(:phc_title) %></h1>
17
+ <!-- -PHCDEV- Header -->
18
18
 
19
- <!-- Page Content -->
20
- <div class="row">
21
- <div class="col-lg-12">
19
+ <!-- -PHCDEV- Panel -->
20
+ <div class="panel panel-inverse">
22
21
 
23
- <!-- Panel -->
24
- <div class="panel panel-inverse">
25
-
26
- <!-- Panel - Heading -->
27
- <div class="panel-heading">
28
- <h4 class="panel-title"><%= yield(:phc_title) %></h4>
29
- </div>
30
- <!-- Panel - Heading -->
31
-
32
- <!-- Panel - Body -->
33
- <div class="panel-body">
34
-
35
- <!-- Index - Table -->
36
- <div class="table-responsive">
37
- <table class="table table-striped table-bordered">
22
+ <!-- -PHCDEV- Panel - Heading -->
23
+ <div class="panel-heading">
24
+ <h4 class="panel-title"><%= yield(:phc_title) %></h4>
25
+ </div>
26
+ <!-- -PHCDEV- Panel - Heading -->
38
27
 
39
- <thead>
40
- <tr>
41
- <th>Script Version</th>
42
- </tr>
43
- </thead>
28
+ <!-- -PHCDEV- Panel - Body -->
29
+ <div class="panel-body">
44
30
 
45
- <tbody>
46
- <% @script_versions.each do |script_version| %>
47
- <tr>
48
- <td><%= link_to script_version.script_version_number, script_version %></td>
49
- </tr>
50
- <% end %>
51
- </tbody>
31
+ <!-- -PHCDEV- Index - Table -->
32
+ <div class="table-responsive">
33
+ <table class="table table-striped table-bordered">
52
34
 
53
- </table>
54
- </div>
55
- <!-- Index - Table -->
35
+ <thead>
36
+ <tr>
37
+ <th>Script Version</th>
38
+ </tr>
39
+ </thead>
56
40
 
57
- <!-- New Button -->
58
- <%= link_to phcdevworks_scripts.new_script_version_path, class: "btn btn-primary" do %>
59
- <i class="fad fa-plus-circle"></i>
60
- Add a New Version Number
41
+ <tbody>
42
+ <% @script_versions.each do |script_version| %>
43
+ <tr>
44
+ <td><%= link_to script_version.script_version_number, script_version %></td>
45
+ </tr>
61
46
  <% end %>
62
- <!-- New Button -->
63
-
64
- </div>
65
- <!-- Panel - Body -->
47
+ </tbody>
66
48
 
49
+ </table>
67
50
  </div>
68
- <!-- Panel -->
51
+ <!-- -PHCDEV- Index - Table -->
52
+
53
+ <!-- -PHCDEV- New Button -->
54
+ <%= link_to phcdevworks_scripts.new_script_version_path, class: "btn btn-primary" do %>
55
+ <i class="fad fa-plus-circle"></i>
56
+ Add a New Version Number
57
+ <% end %>
58
+ <!-- -PHCDEV- New Button -->
69
59
 
70
60
  </div>
61
+ <!-- -PHCDEV- Panel - Body -->
62
+
71
63
  </div>
72
- <!-- Page Content -->
64
+ <!-- -PHCDEV- Panel -->
@@ -1,49 +1,41 @@
1
- <!-- PHCTitleSEO Title Variables -->
1
+ <!-- -PHCDEV- Title Variables -->
2
2
  <% phc_title "Script Listings Manager" %>
3
3
  <% phc_title_tagline "Create a New Version" %>
4
4
  <% phc_breadcrumb_one link_to "Script Index", phcdevworks_scripts.script_listings_path %>
5
5
  <% phc_breadcrumb_two link_to "Script Version Index", phcdevworks_scripts.script_versions_path %>
6
6
  <% phc_breadcrumb_three yield(:phc_title_tagline) %>
7
- <!-- PHCTitleSEO Title Variables -->
7
+ <!-- -PHCDEV- Title Variables -->
8
8
 
9
- <!-- Page Bradcrumbs -->
10
- <ol class="breadcrumb pull-right">
9
+ <!-- -PHCDEV- Bradcrumbs -->
10
+ <ol class="breadcrumb float-xl-end">
11
11
  <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
12
12
  <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_two) %></li>
13
13
  <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_three) %></li>
14
14
  </ol>
15
- <!-- Page Bradcrumbs -->
15
+ <!-- -PHCDEV- Bradcrumbs -->
16
16
 
17
- <!-- Page Header -->
18
- <h2 class="page-header"><%= yield(:phc_title) %></h2>
19
- <!-- Page Header -->
17
+ <!-- -PHCDEV- Header -->
18
+ <h1 class="page-header"><%= yield(:phc_title) %></h1>
19
+ <!-- -PHCDEV- Header -->
20
20
 
21
- <!-- Page Content -->
22
- <div class="row">
23
- <div class="col-lg-12">
21
+ <!-- -PHCDEV- Panel -->
22
+ <div class="panel panel-inverse">
24
23
 
25
- <!-- Panel -->
26
- <div class="panel panel-inverse">
27
-
28
- <!-- Panel - Heading -->
29
- <div class="panel-heading">
30
- <h4 class="panel-title"><%= yield(:phc_title) %></h4>
31
- </div>
32
- <!-- Panel - Heading -->
33
-
34
- <!-- Panel - Body -->
35
- <div class="panel-body">
36
-
37
- <!-- New Form -->
38
- <%= render "form", script_version: @script_version %>
39
- <!-- New Form -->
24
+ <!-- -PHCDEV- Panel - Heading -->
25
+ <div class="panel-heading">
26
+ <h4 class="panel-title"><%= yield(:phc_title) %></h4>
27
+ </div>
28
+ <!-- -PHCDEV- Panel - Heading -->
40
29
 
41
- </div>
42
- <!-- Panel - Body -->
30
+ <!-- -PHCDEV- Panel - Body -->
31
+ <div class="panel-body">
43
32
 
44
- </div>
45
- <!-- Panel -->
33
+ <!-- -PHCDEV- New Form -->
34
+ <%= render "form", script_version: @script_version %>
35
+ <!-- -PHCDEV- New Form -->
46
36
 
47
37
  </div>
38
+ <!-- -PHCDEV- Panel - Body -->
39
+
48
40
  </div>
49
- <!-- Page Content -->
41
+ <!-- -PHCDEV- Panel -->