phcdevworks_press 8.3.1 → 8.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +4 -4
  2. data/MIT-LICENSE +20 -20
  3. data/README.md +33 -33
  4. data/Rakefile +8 -8
  5. data/app/assets/config/phcdevworks_press_manifest.js +3 -3
  6. data/app/assets/stylesheets/phcdevworks_press/application.scss +0 -0
  7. data/app/assets/stylesheets/phcdevworks_press/article/posts.scss +0 -0
  8. data/app/assets/stylesheets/phcdevworks_press/blog/articles.scss +0 -0
  9. data/app/assets/stylesheets/phcdevworks_press/list/items.scss +3 -3
  10. data/app/assets/stylesheets/phcdevworks_press/list/posts.scss +3 -3
  11. data/app/assets/stylesheets/phcdevworks_press/review/posts.scss +3 -3
  12. data/app/controllers/phcdevworks_press/application_controller.rb +13 -13
  13. data/app/controllers/phcdevworks_press/article/posts_controller.rb +83 -83
  14. data/app/controllers/phcdevworks_press/blog/articles_controller.rb +29 -29
  15. data/app/controllers/phcdevworks_press/blog/lists_controller.rb +29 -29
  16. data/app/controllers/phcdevworks_press/blog/reviews_controller.rb +29 -29
  17. data/app/controllers/phcdevworks_press/list/items_controller.rb +89 -89
  18. data/app/controllers/phcdevworks_press/list/posts_controller.rb +82 -82
  19. data/app/controllers/phcdevworks_press/review/posts_controller.rb +82 -82
  20. data/app/helpers/phcdevworks_press/application_helper.rb +4 -4
  21. data/app/helpers/phcdevworks_press/article/posts_helper.rb +4 -4
  22. data/app/helpers/phcdevworks_press/blog/articles_helper.rb +4 -4
  23. data/app/helpers/phcdevworks_press/list/items_helper.rb +4 -4
  24. data/app/helpers/phcdevworks_press/list/posts_helper.rb +4 -4
  25. data/app/helpers/phcdevworks_press/review/posts_helper.rb +4 -4
  26. data/app/jobs/phcdevworks_press/application_job.rb +4 -4
  27. data/app/mailers/phcdevworks_press/application_mailer.rb +6 -6
  28. data/app/models/phcdevworks_press/application_record.rb +5 -5
  29. data/app/models/phcdevworks_press/article/post.rb +34 -34
  30. data/app/models/phcdevworks_press/article.rb +7 -7
  31. data/app/models/phcdevworks_press/article_post_versions.rb +0 -0
  32. data/app/models/phcdevworks_press/list/item.rb +33 -33
  33. data/app/models/phcdevworks_press/list/post.rb +34 -34
  34. data/app/models/phcdevworks_press/list.rb +7 -7
  35. data/app/models/phcdevworks_press/list_item_versions.rb +0 -0
  36. data/app/models/phcdevworks_press/list_post_versions.rb +0 -0
  37. data/app/models/phcdevworks_press/review/post.rb +33 -33
  38. data/app/models/phcdevworks_press/review.rb +7 -7
  39. data/app/models/phcdevworks_press/review_post_versions.rb +0 -0
  40. data/app/views/layouts/phcdevworks_press/application.html.erb +131 -131
  41. data/app/views/layouts/phcdevworks_press/components/backend/footer/_footer.html.erb +0 -0
  42. data/app/views/layouts/phcdevworks_press/components/backend/navigation/_top_menu.html.erb +0 -0
  43. data/app/views/layouts/phcdevworks_press/components/backend/sidebars/_side_menu.html.erb +0 -0
  44. data/app/views/layouts/phcdevworks_press/frontend.html.erb +5 -5
  45. data/app/views/phcdevworks_press/article/posts/_form.html.erb +105 -105
  46. data/app/views/phcdevworks_press/article/posts/edit.html.erb +23 -23
  47. data/app/views/phcdevworks_press/article/posts/index.html.erb +83 -83
  48. data/app/views/phcdevworks_press/article/posts/new.html.erb +23 -23
  49. data/app/views/phcdevworks_press/blog/articles/index.html.erb +69 -69
  50. data/app/views/phcdevworks_press/blog/articles/show.html.erb +0 -0
  51. data/app/views/phcdevworks_press/list/items/_form.html.erb +37 -37
  52. data/app/views/phcdevworks_press/list/items/edit.html.erb +47 -47
  53. data/app/views/phcdevworks_press/list/items/index.html.erb +81 -81
  54. data/app/views/phcdevworks_press/list/items/new.html.erb +48 -48
  55. data/app/views/phcdevworks_press/list/items/show.html.erb +0 -0
  56. data/app/views/phcdevworks_press/list/posts/_form.html.erb +86 -86
  57. data/app/views/phcdevworks_press/list/posts/edit.html.erb +23 -23
  58. data/app/views/phcdevworks_press/list/posts/index.html.erb +84 -84
  59. data/app/views/phcdevworks_press/list/posts/new.html.erb +23 -23
  60. data/app/views/phcdevworks_press/list/posts/show.html.erb +76 -76
  61. data/app/views/phcdevworks_press/review/posts/_form.html.erb +90 -90
  62. data/app/views/phcdevworks_press/review/posts/edit.html.erb +23 -23
  63. data/app/views/phcdevworks_press/review/posts/index.html.erb +83 -83
  64. data/app/views/phcdevworks_press/review/posts/new.html.erb +23 -23
  65. data/app/views/phcdevworks_press/review/posts/show.html.erb +9 -9
  66. data/config/routes.rb +38 -38
  67. data/config/spring.rb +1 -1
  68. data/db/migrate/20170517064030_create_phcdevworks_press_article_post_versions.rb +0 -0
  69. data/db/migrate/20190805232522_create_phcdevworks_press_article_posts.rb +19 -19
  70. data/db/migrate/20191024232406_create_phcdevworks_press_article_categories_posts.rb +10 -10
  71. data/db/migrate/20200708231335_create_phcdevworks_press_list_post_versions.rb +18 -18
  72. data/db/migrate/20200708231351_create_phcdevworks_press_review_post_versions.rb +18 -18
  73. data/db/migrate/20200712064624_create_phcdevworks_press_list_posts.rb +19 -19
  74. data/db/migrate/20200712064740_create_phcdevworks_press_review_posts.rb +21 -21
  75. data/db/migrate/20200712064920_create_phcdevworks_press_list_items.rb +22 -22
  76. data/db/migrate/20200712065808_create_phcdevworks_press_list_item_versions.rb +18 -18
  77. data/db/migrate/20200716224648_create_phcdevworks_press_review_categories_posts.rb +10 -10
  78. data/db/migrate/20200716224738_create_phcdevworks_press_list_categories_posts.rb +10 -10
  79. data/db/migrate/20210213025633_add_affiliatelink_to_article_posts.rb +5 -5
  80. data/lib/phcdevworks_press/engine.rb +47 -47
  81. data/lib/phcdevworks_press/version.rb +3 -3
  82. data/lib/phcdevworks_press.rb +6 -6
  83. data/lib/tasks/phcdevworks_press_tasks.rake +4 -4
  84. metadata +33 -33
@@ -1,37 +1,37 @@
1
- <!-- Form - List Items - Posts -->
2
- <%= form_with(model: [ @list_post, @list_item], url: form_url, local: true) do |form| %>
3
-
4
- <!-- PHCNotifi Render Validation -->
5
- <%= render "phcdevworks_notifications/bootstrap/validations", :object => @list_item %>
6
- <!-- PHCNotifi Render Validation -->
7
-
8
- <!-- Form Input Fields -->
9
- <div class="form-group">
10
- <%= form.label :list_item_title, "Product/Service Title" %>
11
- <%= form.text_field :list_item_title, class: "form-control" %>
12
- </div>
13
-
14
- <div class="form-group">
15
- <%= form.text_area :list_item_text, class: "form-control editor" %>
16
- <div id="word-count" class="mt-3"></div>
17
- </div>
18
-
19
- <div class="form-group">
20
- <%= form.label :list_item_url, "Product/Service URL" %>
21
- <%= form.text_field :list_item_url, class: "form-control" %>
22
- </div>
23
-
24
- <div class="form-group">
25
- <%= form.label :list_item_number, "Ordering Number" %>
26
- <%= form.select( :list_item_number, [["01","01"],["02","02"],["03","03"],["04","04"],["05","05"],["06","06"],["07","07"],["08","08"],["09","09"],["10","10"],["11","11"],["12","12"],["13","13"],["14","14"],["15","15"],["16","16"],["17","17"],["18","18"],["19","19"],["20","20"]], {}, {class: "form-control"}) %>
27
- </div>
28
- <!-- Form Input Fields -->
29
-
30
- <!-- Form Submition Button -->
31
- <div class="actions">
32
- <%= form.submit class: "btn btn-primary" %>
33
- </div>
34
- <!-- For Submition Button -->
35
-
36
- <% end %>
37
- <!-- Form - List Items - Posts -->
1
+ <!-- Form - List Items - Posts -->
2
+ <%= form_with(model: [ @list_post, @list_item], url: form_url, local: true) do |form| %>
3
+
4
+ <!-- PHCNotifi Render Validation -->
5
+ <%= render "phcdevworks_notifications/bootstrap/validations", :object => @list_item %>
6
+ <!-- PHCNotifi Render Validation -->
7
+
8
+ <!-- Form Input Fields -->
9
+ <div class="form-group">
10
+ <%= form.label :list_item_title, "Product/Service Title" %>
11
+ <%= form.text_field :list_item_title, class: "form-control" %>
12
+ </div>
13
+
14
+ <div class="form-group">
15
+ <%= form.text_area :list_item_text, class: "form-control editor" %>
16
+ <div id="word-count" class="mt-3"></div>
17
+ </div>
18
+
19
+ <div class="form-group">
20
+ <%= form.label :list_item_url, "Product/Service URL" %>
21
+ <%= form.text_field :list_item_url, class: "form-control" %>
22
+ </div>
23
+
24
+ <div class="form-group">
25
+ <%= form.label :list_item_number, "Ordering Number" %>
26
+ <%= form.select( :list_item_number, [["01","01"],["02","02"],["03","03"],["04","04"],["05","05"],["06","06"],["07","07"],["08","08"],["09","09"],["10","10"],["11","11"],["12","12"],["13","13"],["14","14"],["15","15"],["16","16"],["17","17"],["18","18"],["19","19"],["20","20"]], {}, {class: "form-control"}) %>
27
+ </div>
28
+ <!-- Form Input Fields -->
29
+
30
+ <!-- Form Submition Button -->
31
+ <div class="actions">
32
+ <%= form.submit class: "btn btn-primary" %>
33
+ </div>
34
+ <!-- For Submition Button -->
35
+
36
+ <% end %>
37
+ <!-- Form - List Items - Posts -->
@@ -1,47 +1,47 @@
1
- <!-- PHCTitleSEO Title Variables -->
2
- <% phc_title "List Manager" %>
3
- <% phc_title_tagline "Update List Item" %>
4
- <% phc_breadcrumb_one yield(:phc_title) %>
5
- <% phc_breadcrumb_two link_to "List Item Index", phcdevworks_press.list_posts_path %>
6
- <!-- PHCTitleSEO Title Variables -->
7
-
8
- <!-- Page Bradcrumbs -->
9
- <ol class="breadcrumb pull-right">
10
- <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
11
- <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li>
12
- </ol>
13
- <!-- Page Bradcrumbs -->
14
-
15
- <!-- Page Header -->
16
- <h2 class="page-header"><%= yield(:phc_title) %></h2>
17
- <!-- Page Header -->
18
-
19
- <!-- Page Content -->
20
- <div class="row">
21
- <div class="col-lg-12">
22
-
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
- <!-- Edit Form -->
36
- <%= render "form", { form_url: list_post_item_path } %>
37
- <!-- Edit Form -->
38
-
39
- </div>
40
- <!-- Panel - Body -->
41
-
42
- </div>
43
- <!-- Panel -->
44
-
45
- </div>
46
- </div>
47
- <!-- Page Content -->
1
+ <!-- PHCTitleSEO Title Variables -->
2
+ <% phc_title "List Manager" %>
3
+ <% phc_title_tagline "Update List Item" %>
4
+ <% phc_breadcrumb_one yield(:phc_title) %>
5
+ <% phc_breadcrumb_two link_to "List Item Index", phcdevworks_press.list_posts_path %>
6
+ <!-- PHCTitleSEO Title Variables -->
7
+
8
+ <!-- Page Bradcrumbs -->
9
+ <ol class="breadcrumb pull-right">
10
+ <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
11
+ <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li>
12
+ </ol>
13
+ <!-- Page Bradcrumbs -->
14
+
15
+ <!-- Page Header -->
16
+ <h2 class="page-header"><%= yield(:phc_title) %></h2>
17
+ <!-- Page Header -->
18
+
19
+ <!-- Page Content -->
20
+ <div class="row">
21
+ <div class="col-lg-12">
22
+
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
+ <!-- Edit Form -->
36
+ <%= render "form", { form_url: list_post_item_path } %>
37
+ <!-- Edit Form -->
38
+
39
+ </div>
40
+ <!-- Panel - Body -->
41
+
42
+ </div>
43
+ <!-- Panel -->
44
+
45
+ </div>
46
+ </div>
47
+ <!-- Page Content -->
@@ -1,81 +1,81 @@
1
- <!-- PHCTitleSEO Title Variables -->
2
- <% phc_title "List Manager" %>
3
- <% phc_title_tagline "List Item Index" %>
4
- <% phc_breadcrumb_one yield(:phc_title) %>
5
- <% phc_breadcrumb_two yield(:phc_title_tagline) %>
6
- <!-- PHCTitleSEO Title Variables -->
7
-
8
- <!-- Page Bradcrumbs -->
9
- <ol class="breadcrumb pull-right">
10
- <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
11
- <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li>
12
- </ol>
13
- <!-- Page Bradcrumbs -->
14
-
15
- <!-- Page Header -->
16
- <h2 class="page-header"><%= yield(:phc_title) %></h2>
17
- <!-- Page Header -->
18
-
19
- <!-- Page Content -->
20
- <div class="row">
21
- <div class="col-lg-12">
22
-
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>Item Headline</th>
42
- <th>Text Preview</th>
43
- <th></th>
44
- </tr>
45
- </thead>
46
-
47
- <tbody>
48
- <% @list_items.each do |list_item| %>
49
- <tr>
50
- <td><%= list_item.list_item_title %></td>
51
- <td><%= truncate(list_item.list_item_text, :length => 80, :escape => false) %></td>
52
- <td>
53
- <div class="btn-group d-flex" role="group">
54
- <%= link_to "Update Item", edit_list_post_item_path(list_item.post, list_item), class: "btn btn-primary btn-xs" %>
55
- <%= link_to "Remove Item", list_post_item_path(list_item.post, list_item), method: :delete, data: { confirm: "Are you sure? This Action Cannot be Reversed." }, class: "btn btn-danger btn-xs" %>
56
- </div>
57
- </td>
58
- </tr>
59
- <% end %>
60
- </tbody>
61
-
62
- </table>
63
- </div>
64
- <!-- Index - Table -->
65
-
66
- <!-- New Button -->
67
- <%= link_to phcdevworks_press.new_list_post_item_path, class: "btn btn-primary" do %>
68
- <i class="fad fa-plus-circle"></i>
69
- <%= "Add a New List Item" %>
70
- <% end %>
71
- <!-- New Button -->
72
-
73
- </div>
74
- <!-- Panel - Body -->
75
-
76
- </div>
77
- <!-- Panel -->
78
-
79
- </div>
80
- </div>
81
- <!-- Page Content -->
1
+ <!-- PHCTitleSEO Title Variables -->
2
+ <% phc_title "List Manager" %>
3
+ <% phc_title_tagline "List Item Index" %>
4
+ <% phc_breadcrumb_one yield(:phc_title) %>
5
+ <% phc_breadcrumb_two yield(:phc_title_tagline) %>
6
+ <!-- PHCTitleSEO Title Variables -->
7
+
8
+ <!-- Page Bradcrumbs -->
9
+ <ol class="breadcrumb pull-right">
10
+ <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
11
+ <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li>
12
+ </ol>
13
+ <!-- Page Bradcrumbs -->
14
+
15
+ <!-- Page Header -->
16
+ <h2 class="page-header"><%= yield(:phc_title) %></h2>
17
+ <!-- Page Header -->
18
+
19
+ <!-- Page Content -->
20
+ <div class="row">
21
+ <div class="col-lg-12">
22
+
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>Item Headline</th>
42
+ <th>Text Preview</th>
43
+ <th></th>
44
+ </tr>
45
+ </thead>
46
+
47
+ <tbody>
48
+ <% @list_items.each do |list_item| %>
49
+ <tr>
50
+ <td><%= list_item.list_item_title %></td>
51
+ <td><%= truncate(list_item.list_item_text, :length => 80, :escape => false) %></td>
52
+ <td>
53
+ <div class="btn-group d-flex" role="group">
54
+ <%= link_to "Update Item", edit_list_post_item_path(list_item.post, list_item), class: "btn btn-primary btn-xs" %>
55
+ <%= link_to "Remove Item", list_post_item_path(list_item.post, list_item), method: :delete, data: { confirm: "Are you sure? This Action Cannot be Reversed." }, class: "btn btn-danger btn-xs" %>
56
+ </div>
57
+ </td>
58
+ </tr>
59
+ <% end %>
60
+ </tbody>
61
+
62
+ </table>
63
+ </div>
64
+ <!-- Index - Table -->
65
+
66
+ <!-- New Button -->
67
+ <%= link_to phcdevworks_press.new_list_post_item_path, class: "btn btn-primary" do %>
68
+ <i class="fad fa-plus-circle"></i>
69
+ <%= "Add a New List Item" %>
70
+ <% end %>
71
+ <!-- New Button -->
72
+
73
+ </div>
74
+ <!-- Panel - Body -->
75
+
76
+ </div>
77
+ <!-- Panel -->
78
+
79
+ </div>
80
+ </div>
81
+ <!-- Page Content -->
@@ -1,48 +1,48 @@
1
- <!-- PHCTitleSEO Title Variables -->
2
- <% phc_title "List Manager" %>
3
- <% phc_title_tagline "Create a New List Item" %>
4
- <% phc_breadcrumb_one yield(:phc_title) %>
5
- <% phc_breadcrumb_two link_to "List Index", phcdevworks_press.list_post_items_path %>
6
- <% phc_breadcrumb_three yield(:phc_title_tagline) %>
7
- <!-- PHCTitleSEO Title Variables -->
8
-
9
- <!-- Page Bradcrumbs -->
10
- <ol class="breadcrumb pull-right">
11
- <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
12
- <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li>
13
- </ol>
14
- <!-- Page Bradcrumbs -->
15
-
16
- <!-- Page Header -->
17
- <h2 class="page-header"><%= yield(:phc_title) %></h2>
18
- <!-- Page Header -->
19
-
20
- <!-- Page Content -->
21
- <div class="row">
22
- <div class="col-lg-12">
23
-
24
- <!-- Panel -->
25
- <div class="panel panel-inverse">
26
-
27
- <!-- Panel - Heading -->
28
- <div class="panel-heading">
29
- <h4 class="panel-title"><%= yield(:phc_title) %></h4>
30
- </div>
31
- <!-- Panel - Heading -->
32
-
33
- <!-- Panel - Body -->
34
- <div class="panel-body">
35
-
36
- <!-- New Form -->
37
- <%= render "form", { form_url: list_post_items_path } %>
38
- <!-- New Form -->
39
-
40
- </div>
41
- <!-- Panel - Body -->
42
-
43
- </div>
44
- <!-- Panel -->
45
-
46
- </div>
47
- </div>
48
- <!-- Page Content -->
1
+ <!-- PHCTitleSEO Title Variables -->
2
+ <% phc_title "List Manager" %>
3
+ <% phc_title_tagline "Create a New List Item" %>
4
+ <% phc_breadcrumb_one yield(:phc_title) %>
5
+ <% phc_breadcrumb_two link_to "List Index", phcdevworks_press.list_post_items_path %>
6
+ <% phc_breadcrumb_three yield(:phc_title_tagline) %>
7
+ <!-- PHCTitleSEO Title Variables -->
8
+
9
+ <!-- Page Bradcrumbs -->
10
+ <ol class="breadcrumb pull-right">
11
+ <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
12
+ <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li>
13
+ </ol>
14
+ <!-- Page Bradcrumbs -->
15
+
16
+ <!-- Page Header -->
17
+ <h2 class="page-header"><%= yield(:phc_title) %></h2>
18
+ <!-- Page Header -->
19
+
20
+ <!-- Page Content -->
21
+ <div class="row">
22
+ <div class="col-lg-12">
23
+
24
+ <!-- Panel -->
25
+ <div class="panel panel-inverse">
26
+
27
+ <!-- Panel - Heading -->
28
+ <div class="panel-heading">
29
+ <h4 class="panel-title"><%= yield(:phc_title) %></h4>
30
+ </div>
31
+ <!-- Panel - Heading -->
32
+
33
+ <!-- Panel - Body -->
34
+ <div class="panel-body">
35
+
36
+ <!-- New Form -->
37
+ <%= render "form", { form_url: list_post_items_path } %>
38
+ <!-- New Form -->
39
+
40
+ </div>
41
+ <!-- Panel - Body -->
42
+
43
+ </div>
44
+ <!-- Panel -->
45
+
46
+ </div>
47
+ </div>
48
+ <!-- Page Content -->
File without changes
@@ -1,86 +1,86 @@
1
- <!-- Form - List - Posts -->
2
- <%= form_with(model: list_post, local: true) do |form| %>
3
-
4
- <div class="row">
5
- <div class="col-md-3">
6
-
7
- <!-- Panel - Publishing -->
8
- <div class="panel panel-inverse">
9
- <div class="panel-heading">
10
- <h4 class="panel-title">List Publish Panel</h4>
11
- </div>
12
- <div class="panel-body">
13
- <div class="form-group field_with_errors">
14
- <%= form.label :list_post_status, "Post Status" %>
15
- <%= form.select( :list_post_status, [["Draft","draft"],["Published","published"],["Review","review"]], {}, {class: "form-control"}) %>
16
- </div>
17
- <div class="actions">
18
- <%= form.submit class: "btn btn-primary" %>
19
- </div>
20
- </div>
21
- </div>
22
- <!-- Panel - Publishing -->
23
-
24
- <!-- Panel - Image Uploading -->
25
- <div class="panel panel-inverse">
26
- <div class="panel-heading">
27
- <h4 class="panel-title">List Images</h4>
28
- </div>
29
- <div class="panel-body">
30
- <div class="form-group field_with_errors">
31
- <%= form.label :list_post_image, "Featured Image" %>
32
- <%= form.file_field :list_post_image, class: "form-control" %>
33
- </div>
34
- <% if form.object.list_post_image.attached? %>
35
- <%= image_tag main_app.url_for(form.object.list_post_image), class: "img-responsive img-thumbnail" %>
36
- <% end %>
37
- </div>
38
- </div>
39
- <!-- Panel - Image Uploading -->
40
-
41
- <!-- Panel - Article - Categories -->
42
- <div class="panel panel-inverse">
43
- <div class="panel-heading">
44
- <h4 class="panel-title">List Options</h4>
45
- </div>
46
- <div class="panel-body">
47
- <%= form.collection_check_boxes :category_ids, PhcdevworksCoreModules::Post::Category.all, :id, :post_category_name do |post_category| %>
48
- <%= post_category.check_box %>
49
- <%= post_category.label %><br>
50
- <% end %>
51
- <div class="form-group">
52
- <label>Attach SEO Data</label>
53
- <%= collection_select(:list_post, :optimization_id, PhcdevworksCoreModules::Marketing::Optimization.order("marketing_optimization_page_title"), :id, :marketing_optimization_page_title, {include_blank: true}, {class: "form-control"}) %>
54
- </div>
55
- </div>
56
- </div>
57
- <!-- Panel - Article - Categories -->
58
-
59
- </div>
60
- <div class="col-md-9 ">
61
-
62
- <!-- PHCNotifi Render Validation -->
63
- <%= render "phcdevworks_notifications/bootstrap/validations", :object => @list_post %>
64
- <!-- PHCNotifi Render Validation -->
65
-
66
- <div class="panel panel-inverse">
67
- <div class="panel-heading">
68
- <h4 class="panel-title"><%= yield(:phc_title_tagline) %></h4>
69
- </div>
70
- <div class="panel-body">
71
- <div class="form-group field_with_errors">
72
- <%= form.label :list_post_title, "List Title" %>
73
- <%= form.text_field :list_post_title, class: "form-control" %>
74
- </div>
75
- <div class="form-group ">
76
- <%= form.text_area :list_post_text, class: "form-control editor" %>
77
- <div id="word-count" class="mt-3"></div>
78
- </div>
79
- </div>
80
- </div>
81
-
82
- </div>
83
- </div>
84
-
85
- <% end %>
86
- <!-- Form - List - Posts -->
1
+ <!-- Form - List - Posts -->
2
+ <%= form_with(model: list_post, local: true) do |form| %>
3
+
4
+ <div class="row">
5
+ <div class="col-md-3">
6
+
7
+ <!-- Panel - Publishing -->
8
+ <div class="panel panel-inverse">
9
+ <div class="panel-heading">
10
+ <h4 class="panel-title">List Publish Panel</h4>
11
+ </div>
12
+ <div class="panel-body">
13
+ <div class="form-group field_with_errors">
14
+ <%= form.label :list_post_status, "Post Status" %>
15
+ <%= form.select( :list_post_status, [["Draft","draft"],["Published","published"],["Review","review"]], {}, {class: "form-control"}) %>
16
+ </div>
17
+ <div class="actions">
18
+ <%= form.submit class: "btn btn-primary" %>
19
+ </div>
20
+ </div>
21
+ </div>
22
+ <!-- Panel - Publishing -->
23
+
24
+ <!-- Panel - Image Uploading -->
25
+ <div class="panel panel-inverse">
26
+ <div class="panel-heading">
27
+ <h4 class="panel-title">List Images</h4>
28
+ </div>
29
+ <div class="panel-body">
30
+ <div class="form-group field_with_errors">
31
+ <%= form.label :list_post_image, "Featured Image" %>
32
+ <%= form.file_field :list_post_image, class: "form-control" %>
33
+ </div>
34
+ <% if form.object.list_post_image.attached? %>
35
+ <%= image_tag main_app.url_for(form.object.list_post_image), class: "img-responsive img-thumbnail" %>
36
+ <% end %>
37
+ </div>
38
+ </div>
39
+ <!-- Panel - Image Uploading -->
40
+
41
+ <!-- Panel - Article - Categories -->
42
+ <div class="panel panel-inverse">
43
+ <div class="panel-heading">
44
+ <h4 class="panel-title">List Options</h4>
45
+ </div>
46
+ <div class="panel-body">
47
+ <%= form.collection_check_boxes :category_ids, PhcdevworksCoreModules::Post::Category.all, :id, :post_category_name do |post_category| %>
48
+ <%= post_category.check_box %>
49
+ <%= post_category.label %><br>
50
+ <% end %>
51
+ <div class="form-group">
52
+ <label>Attach SEO Data</label>
53
+ <%= collection_select(:list_post, :optimization_id, PhcdevworksCoreModules::Marketing::Optimization.order("marketing_optimization_page_title"), :id, :marketing_optimization_page_title, {include_blank: true}, {class: "form-control"}) %>
54
+ </div>
55
+ </div>
56
+ </div>
57
+ <!-- Panel - Article - Categories -->
58
+
59
+ </div>
60
+ <div class="col-md-9 ">
61
+
62
+ <!-- PHCNotifi Render Validation -->
63
+ <%= render "phcdevworks_notifications/bootstrap/validations", :object => @list_post %>
64
+ <!-- PHCNotifi Render Validation -->
65
+
66
+ <div class="panel panel-inverse">
67
+ <div class="panel-heading">
68
+ <h4 class="panel-title"><%= yield(:phc_title_tagline) %></h4>
69
+ </div>
70
+ <div class="panel-body">
71
+ <div class="form-group field_with_errors">
72
+ <%= form.label :list_post_title, "List Title" %>
73
+ <%= form.text_field :list_post_title, class: "form-control" %>
74
+ </div>
75
+ <div class="form-group ">
76
+ <%= form.text_area :list_post_text, class: "form-control editor" %>
77
+ <div id="word-count" class="mt-3"></div>
78
+ </div>
79
+ </div>
80
+ </div>
81
+
82
+ </div>
83
+ </div>
84
+
85
+ <% end %>
86
+ <!-- Form - List - Posts -->
@@ -1,23 +1,23 @@
1
- <!-- PHCTitleSEO Title Variables -->
2
- <% phc_title "List Manager" %>
3
- <% phc_title_tagline "Update List" %>
4
- <% phc_breadcrumb_one yield(:phc_title) %>
5
- <% phc_breadcrumb_two link_to "List Index", phcdevworks_press.list_posts_path %>
6
- <% phc_breadcrumb_three yield(:phc_title_tagline) %>
7
- <!-- PHCTitleSEO Title Variables -->
8
-
9
- <!-- Page Bradcrumbs -->
10
- <ol class="breadcrumb pull-right">
11
- <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
12
- <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_two) %></li>
13
- <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_three) %></li>
14
- </ol>
15
- <!-- Page Bradcrumbs -->
16
-
17
- <!-- Page Header -->
18
- <h2 class="page-header"><%= yield(:phc_title) %></h2>
19
- <!-- Page Header -->
20
-
21
- <!-- Edit Form -->
22
- <%= render 'form', list_post: @list_post %>
23
- <!-- Edit Form -->
1
+ <!-- PHCTitleSEO Title Variables -->
2
+ <% phc_title "List Manager" %>
3
+ <% phc_title_tagline "Update List" %>
4
+ <% phc_breadcrumb_one yield(:phc_title) %>
5
+ <% phc_breadcrumb_two link_to "List Index", phcdevworks_press.list_posts_path %>
6
+ <% phc_breadcrumb_three yield(:phc_title_tagline) %>
7
+ <!-- PHCTitleSEO Title Variables -->
8
+
9
+ <!-- Page Bradcrumbs -->
10
+ <ol class="breadcrumb pull-right">
11
+ <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
12
+ <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_two) %></li>
13
+ <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_three) %></li>
14
+ </ol>
15
+ <!-- Page Bradcrumbs -->
16
+
17
+ <!-- Page Header -->
18
+ <h2 class="page-header"><%= yield(:phc_title) %></h2>
19
+ <!-- Page Header -->
20
+
21
+ <!-- Edit Form -->
22
+ <%= render 'form', list_post: @list_post %>
23
+ <!-- Edit Form -->