blueberry_cms 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/models/blueberry_cms/link.rb +3 -3
- data/app/models/blueberry_cms/question.rb +2 -2
- data/app/models/blueberry_cms/tab.rb +2 -2
- data/app/models/blueberry_cms/video.rb +1 -1
- data/app/views/blueberry_cms/admin/page_blocks/_faq_questions_fields.slim +9 -2
- data/app/views/blueberry_cms/admin/page_blocks/_links_links_fields.slim +15 -3
- data/app/views/blueberry_cms/admin/page_blocks/_tabs_tabs_fields.html.slim +9 -2
- data/app/views/blueberry_cms/admin/page_blocks/_videos_fields.slim +6 -1
- data/app/views/blueberry_cms/page_blocks/_links.html.slim +1 -1
- data/lib/blueberry_cms/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 207de3dc57e2728c4e0484cffebc9b9c5d3087f5ee2fbcc6d48aa0924b46a7d1
|
4
|
+
data.tar.gz: 630fc7de8be9e2588c99095f7ac28fc447e1a892f24b6c0d1a9bf5301f11ae96
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de3417e1789a5c6ae7d09572c4998661a0c1083e46802b7e4dfdf0dbd41436a62e024e35e1ec6bdca65ff1383a25793889e9bae3d05b6e546e7d43022d613fee
|
7
|
+
data.tar.gz: 4d5691189979f408a1cb388fe199126c13bc80e580407a818fb44ed4ee0e47117d872c8274064a01a6859f98e72a799d82852e9756b058eee07ee545bef40fdf
|
@@ -3,9 +3,9 @@ module BlueberryCMS
|
|
3
3
|
include Mongoid::Document
|
4
4
|
|
5
5
|
field :css_class, type: String
|
6
|
-
field :title, type: String
|
7
|
-
field :description, type: String
|
8
|
-
field :url, type: String
|
6
|
+
field :title, type: String, localize: true
|
7
|
+
field :description, type: String, localize: true
|
8
|
+
field :url, type: String, localize: true
|
9
9
|
field :page_id, type: BSON::ObjectId
|
10
10
|
field :image_tmp, type: String
|
11
11
|
|
@@ -2,9 +2,9 @@ module BlueberryCMS
|
|
2
2
|
class Question
|
3
3
|
include Mongoid::Document
|
4
4
|
|
5
|
-
field :answer, type: String
|
5
|
+
field :answer, type: String, localize: true
|
6
6
|
field :position, type: Integer
|
7
|
-
field :question, type: String
|
7
|
+
field :question, type: String, localize: true
|
8
8
|
|
9
9
|
embedded_in :faq, class_name: 'BlueberryCMS::PageBlocks::FAQ'
|
10
10
|
end
|
@@ -2,9 +2,9 @@ module BlueberryCMS
|
|
2
2
|
class Tab
|
3
3
|
include Mongoid::Document
|
4
4
|
|
5
|
-
field :content, type: String
|
5
|
+
field :content, type: String, localize: true
|
6
6
|
field :position, type: Integer
|
7
|
-
field :title, type: String
|
7
|
+
field :title, type: String, localize: true
|
8
8
|
|
9
9
|
embedded_in :tabs, class_name: 'BlueberryCMS::PageBlocks::Tabs'
|
10
10
|
|
@@ -14,8 +14,15 @@ li.nested-fields.question class=('hidden' if f.object.marked_for_destruction?)
|
|
14
14
|
i.glyphicon.glyphicon-resize-small title=t('blueberry_cms.admin.common.collapse')
|
15
15
|
|
16
16
|
.panel-body.collapse class=('in' if block_visible?(f.object)) id="toggle-#{f.object_id}"
|
17
|
-
|
18
|
-
|
17
|
+
- I18n.available_locales.each do |locale|
|
18
|
+
.tab-content class="#{locale}-content"
|
19
|
+
= f.input :question
|
20
|
+
= f.simple_fields_for :question_translations do |localized_field|
|
21
|
+
= localized_field.input locale, input_html: { value: f.object.question_translations[locale] }, label: false
|
22
|
+
|
23
|
+
= f.input :answer
|
24
|
+
= f.simple_fields_for :answer_translations do |localized_field|
|
25
|
+
= localized_field.input locale, input_html: { value: f.object.answer_translations[locale], class: 'redactor' }, as: :text, label: false
|
19
26
|
|
20
27
|
hr
|
21
28
|
.form-group--no-label
|
@@ -3,9 +3,21 @@
|
|
3
3
|
.panel.panel-default
|
4
4
|
.panel-body
|
5
5
|
= f.input :css_class
|
6
|
-
|
7
|
-
|
8
|
-
|
6
|
+
|
7
|
+
- I18n.available_locales.each do |locale|
|
8
|
+
.tab-content class="#{locale}-content"
|
9
|
+
= f.input :title
|
10
|
+
= f.simple_fields_for :title_translations do |localized_field|
|
11
|
+
= localized_field.input locale, input_html: { value: f.object.title_translations[locale] }, label: false
|
12
|
+
|
13
|
+
= f.input :description
|
14
|
+
= f.simple_fields_for :description_translations do |localized_field|
|
15
|
+
= localized_field.input locale, input_html: { value: f.object.description_translations[locale], class: 'redactor' }, as: :text, label: false
|
16
|
+
|
17
|
+
= f.input :url
|
18
|
+
= f.simple_fields_for :url_translations do |localized_field|
|
19
|
+
= localized_field.input locale, input_html: { value: f.object.url_translations[locale] }, label: false
|
20
|
+
|
9
21
|
= f.input :page_id, collection: nested_set_options(BlueberryCMS::Page)
|
10
22
|
= f.input :image
|
11
23
|
- if f.object.image.present?
|
@@ -14,8 +14,15 @@ li.nested-fields.tab class=('hidden' if f.object.marked_for_destruction?)
|
|
14
14
|
i.glyphicon.glyphicon-resize-small title=t('blueberry_cms.admin.common.collapse')
|
15
15
|
|
16
16
|
.panel-body.collapse class=('in' if block_visible?(f.object)) id="toggle-#{f.object_id}"
|
17
|
-
|
18
|
-
|
17
|
+
- I18n.available_locales.each do |locale|
|
18
|
+
.tab-content class="#{locale}-content"
|
19
|
+
= f.input :title
|
20
|
+
= f.simple_fields_for :title_translations do |localized_field|
|
21
|
+
= localized_field.input locale, input_html: { value: f.object.title_translations[locale] }, label: false
|
22
|
+
|
23
|
+
= f.input :content
|
24
|
+
= f.simple_fields_for :content_translations do |localized_field|
|
25
|
+
= localized_field.input locale, input_html: { value: f.object.content_translations[locale], class: 'redactor' }, as: :text, label: false
|
19
26
|
|
20
27
|
hr
|
21
28
|
.form-group--no-label
|
@@ -6,7 +6,12 @@ li.nested-fields.video class=('hidden' if f.object.marked_for_destruction?)
|
|
6
6
|
= f.input :position, as: :hidden
|
7
7
|
|
8
8
|
.panel-body
|
9
|
-
|
9
|
+
- I18n.available_locales.each do |locale|
|
10
|
+
.tab-content class="#{locale}-content"
|
11
|
+
= f.input :title
|
12
|
+
= f.simple_fields_for :title_translations do |localized_field|
|
13
|
+
= localized_field.input locale, input_html: { value: f.object.title_translations[locale] }, label: false
|
14
|
+
|
10
15
|
= f.input :job
|
11
16
|
= f.input :movie_url
|
12
17
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blueberry_cms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Martin Magnusek
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2019-06-
|
12
|
+
date: 2019-06-26 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: carrierwave
|