thecore_ui_rails_admin 2.4.2 → 2.4.6
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/assets/javascripts/rails_admin/custom/thecore-custom-1.js +1 -0
- data/app/assets/javascripts/rails_admin/custom/thecore-custom-2.js +1 -0
- data/app/assets/javascripts/rails_admin/custom/thecore-custom-3.js +1 -0
- data/app/assets/javascripts/rails_admin/custom/thecore-custom-4.js +1 -0
- data/app/assets/javascripts/rails_admin/custom/thecore-custom-5.js +1 -0
- data/app/assets/javascripts/rails_admin/custom/thecore.js +1 -0
- data/app/assets/javascripts/rails_admin/custom/ui.js +8 -0
- data/app/assets/stylesheets/rails_admin/custom/theming-custom-1.scss +1 -0
- data/app/assets/stylesheets/rails_admin/custom/theming-custom-2.scss +1 -0
- data/app/assets/stylesheets/rails_admin/custom/theming-custom-3.scss +1 -0
- data/app/assets/stylesheets/rails_admin/custom/theming-custom-4.scss +1 -0
- data/app/assets/stylesheets/rails_admin/custom/theming-custom-5.scss +1 -0
- data/app/assets/stylesheets/rails_admin/custom/theming.scss +12 -0
- data/app/assets/stylesheets/{thecore_ui_rails_admin/colors.scss → rails_admin/custom/variables.scss} +0 -0
- data/app/assets/stylesheets/thecore_ui_rails_admin/thecore.scss +3 -2
- data/app/assets/stylesheets/thecore_ui_rails_admin/togglable-sidebar.scss +11 -11
- data/app/views/{layouts → layouts.old}/rails_admin/_navigation.html.haml +0 -0
- data/app/views/{layouts → layouts.old}/rails_admin/_secondary_navigation.html.haml +0 -0
- data/app/views/{layouts → layouts.old}/rails_admin/_sidebar_navigation.html.haml +0 -0
- data/app/views/{layouts → layouts.old}/rails_admin/_style_common.html.haml +0 -0
- data/app/views/{layouts → layouts.old}/rails_admin/_style_override.html.haml +0 -0
- data/app/views/{layouts → layouts.old}/rails_admin/_user_navigation.html.haml +0 -0
- data/app/views/{layouts → layouts.old}/rails_admin/application.html.haml +5 -7
- data/app/views/{layouts → layouts.old}/rails_admin/pjax.html.haml +1 -1
- data/app/views/{rails_admin → rails_admin.old}/main/_card.html.haml +0 -0
- data/app/views/{rails_admin → rails_admin.old}/main/_dashboard_block.html.haml +0 -0
- data/app/views/{rails_admin → rails_admin.old}/main/_modal_interaction.html.erb +0 -0
- data/app/views/{rails_admin → rails_admin.old}/main/dashboard.html.haml +0 -0
- data/app/views/{rails_admin → rails_admin.old}/main/index.html.haml +0 -0
- data/config/initializers/rails_admin.rb +1 -0
- data/config/initializers/thecore_concern.rb +7 -7
- data/config/initializers/thecore_ui_rails_admin_app_configs.rb +1 -1
- data/lib/abilities/thecore_ui_rails_admin.rb +3 -3
- data/lib/concerns/rails_admin_requirements.rb +1 -1
- data/lib/thecore_ui_rails_admin.rb +2 -2
- metadata +29 -32
- data/config/locales/thecore_settings.en.yml +0 -31
- data/config/locales/thecore_settings.it.yml +0 -31
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9372fda0392da6eb860ca41efc92ded46766441a7eba46bad550e64a5d08f6a8
|
|
4
|
+
data.tar.gz: 498fc2356a2db51a3497f82c7a01db901ddf8c603e8623acc19a2ef29c9c8f96
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eed780a5e6d3851934be6941f3f6afa9a17fec04a4377bef579610b5a9ec87bb50060d3ef7d5ae6fa5f92f1d4b59cd8a377fa76e8d74a5f8711acdb7ad79e467
|
|
7
|
+
data.tar.gz: 1aca643484ea76ea6166ed9a721684c93fda05bb68e59a727ae5600c6a72c0137830bc2177f0ce2cce7c118d1e88d49fe1566aecc78c1991ea4031b4f4b3bf14
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* Please Override in your application or in a wrapper gem */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* Please Override in your application or in a wrapper gem */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* Please Override in your application or in a wrapper gem */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* Please Override in your application or in a wrapper gem */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* Please Override in your application or in a wrapper gem */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/* Please Override in your application or in a wrapper gem */
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
//= require selectize
|
|
2
|
+
//= require thecore_ui_commons/thecore
|
|
3
|
+
//= require rails_admin/custom/thecore
|
|
4
|
+
//= require rails_admin/custom/thecore-custom-1
|
|
5
|
+
//= require rails_admin/custom/thecore-custom-2
|
|
6
|
+
//= require rails_admin/custom/thecore-custom-3
|
|
7
|
+
//= require rails_admin/custom/thecore-custom-4
|
|
8
|
+
//= require rails_admin/custom/thecore-custom-5
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// Please override in your application or wrapper engine
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// Please override in your application or wrapper engine
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// Please override in your application or wrapper engine
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// Please override in your application or wrapper engine
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// Please override in your application or wrapper engine
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
@import 'selectize';
|
|
2
|
+
@import 'selectize.bootstrap3';
|
|
3
|
+
@import 'thecore_ui_commons/thecore';
|
|
4
|
+
@import 'rails_admin/custom/theming-custom-1';
|
|
5
|
+
@import 'rails_admin/custom/theming-custom-2';
|
|
6
|
+
@import 'rails_admin/custom/theming-custom-3';
|
|
7
|
+
@import 'rails_admin/custom/theming-custom-4';
|
|
8
|
+
@import 'rails_admin/custom/theming-custom-5';
|
|
9
|
+
|
|
10
|
+
.form-control.selectize-control {
|
|
11
|
+
width: 62%;
|
|
12
|
+
}
|
data/app/assets/stylesheets/{thecore_ui_rails_admin/colors.scss → rails_admin/custom/variables.scss}
RENAMED
|
File without changes
|
|
@@ -16,8 +16,9 @@
|
|
|
16
16
|
*= require rails_admin_selectize/index
|
|
17
17
|
*= require_self
|
|
18
18
|
*/
|
|
19
|
-
@import '
|
|
20
|
-
@import '
|
|
19
|
+
@import 'rails_admin/custom/variables';
|
|
20
|
+
@import 'rails_admin/custom/theming';
|
|
21
|
+
@import 'rails_admin/custom/mixins';
|
|
21
22
|
@import "jquery-ui";
|
|
22
23
|
@import "jquery-ui/dialog";
|
|
23
24
|
@import 'bootstrap-sprockets';
|
|
@@ -41,14 +41,14 @@
|
|
|
41
41
|
}
|
|
42
42
|
/* Sidebar Styles */
|
|
43
43
|
|
|
44
|
-
.sidebar-nav {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
}
|
|
44
|
+
// .sidebar-nav {
|
|
45
|
+
// position: absolute;
|
|
46
|
+
// top: 0;
|
|
47
|
+
// width: 250px;
|
|
48
|
+
// margin: 0;
|
|
49
|
+
// padding: 0;
|
|
50
|
+
// list-style: none;
|
|
51
|
+
// }
|
|
52
52
|
.sidebar-nav li {
|
|
53
53
|
text-indent: 20px;
|
|
54
54
|
line-height: 40px;
|
|
@@ -80,9 +80,9 @@
|
|
|
80
80
|
background: none;
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
-
body.rails_admin .sidebar-nav {
|
|
84
|
-
|
|
85
|
-
}
|
|
83
|
+
// body.rails_admin .sidebar-nav {
|
|
84
|
+
// top: 0px;
|
|
85
|
+
// }
|
|
86
86
|
|
|
87
87
|
.sub-menu a {
|
|
88
88
|
padding-left: 20px;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -2,17 +2,15 @@
|
|
|
2
2
|
%html{lang: I18n.locale}
|
|
3
3
|
%head
|
|
4
4
|
%title= Settings.app_name rescue "Thecore"
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
=
|
|
5
|
+
|
|
6
|
+
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => 'reload'
|
|
7
|
+
= javascript_pack_tag 'application', 'data-turbolinks-track' => 'reload'
|
|
8
|
+
|
|
9
|
+
= render "layouts/rails_admin/head"
|
|
10
10
|
|
|
11
11
|
= render "layouts/rails_admin/style_common"
|
|
12
12
|
= render "layouts/rails_admin/style_override"
|
|
13
13
|
|
|
14
|
-
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => 'reload'
|
|
15
|
-
= javascript_pack_tag 'application', 'data-turbolinks-track' => 'reload'
|
|
16
14
|
/ Getting all the assets needed by thecore_ui_rails_admin from all the gems and the application level
|
|
17
15
|
= get_asset_tags_for("thecore_rails_admin")
|
|
18
16
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
$('.nav.nav-pills li[data-model="#{@abstract_model.to_param}"]').addClass('active');
|
|
4
4
|
$(window).off('keydown');
|
|
5
5
|
|
|
6
|
-
- # Integration of the
|
|
6
|
+
- # Integration of the thecore_settings gem, if not available, it rescues to the normal naming
|
|
7
7
|
%title= "#{(@abstract_model.try(:pretty_name) || @page_name)} | #{Settings.app_name rescue ([_get_plugin_name[0] || 'Rails', _get_plugin_name[1] || 'Admin'].join(' '))}"
|
|
8
8
|
.page-header
|
|
9
9
|
%h1= @page_name
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -2,6 +2,7 @@ require 'rails_admin'
|
|
|
2
2
|
require 'nested_form/builder_mixin'
|
|
3
3
|
|
|
4
4
|
RailsAdmin.config do |config|
|
|
5
|
+
config.main_app_name = Proc.new { |controller| [ ((ENV["APP_NAME"].presence || Settings.app_name.presence) rescue "Thecore"), "" ] }
|
|
5
6
|
# Link for background Job
|
|
6
7
|
(config.navigation_static_links ||= {}).merge! "Background Monitor" => "#{ENV['RAILS_RELATIVE_URL_ROOT']}/app/sidekiq"
|
|
7
8
|
|
|
@@ -33,16 +33,16 @@ module ThecoreConcern
|
|
|
33
33
|
action = root_actions.collect(&:action_name).first
|
|
34
34
|
# REDIRECT TO THAT ACTION
|
|
35
35
|
|
|
36
|
-
Rails.logger.info "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA: Checking redirect path"
|
|
36
|
+
# Rails.logger.info "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA: Checking redirect path"
|
|
37
37
|
stored_location = stored_location_for(resource)
|
|
38
38
|
if !stored_location.blank? && can?(resource, :all)
|
|
39
|
-
Rails.logger.info "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA: Checking redirect path: I'm in the IF stored_location_for(resource): #{stored_location}"
|
|
39
|
+
# Rails.logger.info "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA: Checking redirect path: I'm in the IF stored_location_for(resource): #{stored_location}"
|
|
40
40
|
return stored_location
|
|
41
41
|
elsif action
|
|
42
|
-
Rails.logger.info "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA: Checking redirect path: I'm in the ELSIF with action name: #{action}"
|
|
42
|
+
# Rails.logger.info "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA: Checking redirect path: I'm in the ELSIF with action name: #{action}"
|
|
43
43
|
return rails_admin.send("#{action}_path").sub("#{ENV['RAILS_RELATIVE_URL_ROOT']}#{ENV['RAILS_RELATIVE_URL_ROOT']}", "#{ENV['RAILS_RELATIVE_URL_ROOT']}")
|
|
44
44
|
else
|
|
45
|
-
Rails.logger.info "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA: Checking redirect path: I'm in the ELSE with root_path: #{root_path}"
|
|
45
|
+
# Rails.logger.info "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA: Checking redirect path: I'm in the ELSE with root_path: #{root_path}"
|
|
46
46
|
sign_out current_user
|
|
47
47
|
user_session = nil
|
|
48
48
|
current_user = nil
|
|
@@ -105,9 +105,9 @@ module ThecoreConcern
|
|
|
105
105
|
|
|
106
106
|
# Auto-sign out locked users
|
|
107
107
|
def reject_locked!
|
|
108
|
-
Rails.logger.info "BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB reject_locked"
|
|
108
|
+
# Rails.logger.info "BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB reject_locked"
|
|
109
109
|
if !current_user.blank? && current_user.locked?
|
|
110
|
-
Rails.logger.info "BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB is locked"
|
|
110
|
+
# Rails.logger.info "BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB is locked"
|
|
111
111
|
sign_out current_user
|
|
112
112
|
user_session = nil
|
|
113
113
|
current_user = nil
|
|
@@ -115,7 +115,7 @@ module ThecoreConcern
|
|
|
115
115
|
flash[:notice] = nil
|
|
116
116
|
redirect_to root_url
|
|
117
117
|
end
|
|
118
|
-
Rails.logger.info "BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB is not locked = ok"
|
|
118
|
+
# Rails.logger.info "BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB is not locked = ok"
|
|
119
119
|
end
|
|
120
120
|
|
|
121
121
|
|
|
@@ -9,7 +9,7 @@ Rails.application.configure do
|
|
|
9
9
|
config.after_initialize do
|
|
10
10
|
RailsAdmin::Config::Actions::Export.send(:include, ExportConcern)
|
|
11
11
|
RailsAdmin::Config::Actions::BulkDelete.send(:include, BulkDeleteConcern)
|
|
12
|
-
|
|
12
|
+
ThecoreSettings::Setting.send(:include, ThecoreSettings::RailsAdminExtensionConfig)
|
|
13
13
|
User.send(:include, ThecoreUiRailsAdminUser)
|
|
14
14
|
UsedToken.send(:include, ThecoreUiRailsAdminUsedToken)
|
|
15
15
|
Role.send(:include, ThecoreUiRailsAdminRole)
|
|
@@ -4,9 +4,9 @@ module Abilities
|
|
|
4
4
|
def initialize user
|
|
5
5
|
# No one is allowed to add or destroy settings
|
|
6
6
|
# just list or edit existing
|
|
7
|
-
cannot :create,
|
|
8
|
-
cannot :destroy,
|
|
9
|
-
cannot :show,
|
|
7
|
+
cannot :create, ThecoreSettings::Setting
|
|
8
|
+
cannot :destroy, ThecoreSettings::Setting
|
|
9
|
+
cannot :show, ThecoreSettings::Setting
|
|
10
10
|
end
|
|
11
11
|
end
|
|
12
12
|
end
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
require 'thecore_ui_commons'
|
|
2
2
|
# Rails Admin
|
|
3
|
-
ENV['RAILS_ADMIN_THEME'] ||= 'rollincode'
|
|
4
|
-
require 'rails_admin_rollincode'
|
|
3
|
+
# ENV['RAILS_ADMIN_THEME'] ||= 'rollincode'
|
|
4
|
+
# require 'rails_admin_rollincode'
|
|
5
5
|
require 'rails_admin'
|
|
6
6
|
require 'rails_admin-i18n'
|
|
7
7
|
require 'safe_yaml'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: thecore_ui_rails_admin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.4.
|
|
4
|
+
version: 2.4.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gabriele Tassoni
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-08-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thecore_ui_commons
|
|
@@ -52,20 +52,6 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '5.0'
|
|
55
|
-
- !ruby/object:Gem::Dependency
|
|
56
|
-
name: rails_admin_rollincode
|
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
|
58
|
-
requirements:
|
|
59
|
-
- - "~>"
|
|
60
|
-
- !ruby/object:Gem::Version
|
|
61
|
-
version: '1.3'
|
|
62
|
-
type: :runtime
|
|
63
|
-
prerelease: false
|
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
-
requirements:
|
|
66
|
-
- - "~>"
|
|
67
|
-
- !ruby/object:Gem::Version
|
|
68
|
-
version: '1.3'
|
|
69
55
|
- !ruby/object:Gem::Dependency
|
|
70
56
|
name: rails_admin
|
|
71
57
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -148,11 +134,24 @@ files:
|
|
|
148
134
|
- README.md
|
|
149
135
|
- Rakefile
|
|
150
136
|
- app/assets/config/thecore_ui_rails_admin_manifest.js
|
|
137
|
+
- app/assets/javascripts/rails_admin/custom/thecore-custom-1.js
|
|
138
|
+
- app/assets/javascripts/rails_admin/custom/thecore-custom-2.js
|
|
139
|
+
- app/assets/javascripts/rails_admin/custom/thecore-custom-3.js
|
|
140
|
+
- app/assets/javascripts/rails_admin/custom/thecore-custom-4.js
|
|
141
|
+
- app/assets/javascripts/rails_admin/custom/thecore-custom-5.js
|
|
142
|
+
- app/assets/javascripts/rails_admin/custom/thecore.js
|
|
143
|
+
- app/assets/javascripts/rails_admin/custom/ui.js
|
|
151
144
|
- app/assets/javascripts/rails_admin/ra.widgets.coffee
|
|
152
145
|
- app/assets/javascripts/thecore_ui_rails_admin/thecore_rails_admin.js
|
|
146
|
+
- app/assets/stylesheets/rails_admin/custom/theming-custom-1.scss
|
|
147
|
+
- app/assets/stylesheets/rails_admin/custom/theming-custom-2.scss
|
|
148
|
+
- app/assets/stylesheets/rails_admin/custom/theming-custom-3.scss
|
|
149
|
+
- app/assets/stylesheets/rails_admin/custom/theming-custom-4.scss
|
|
150
|
+
- app/assets/stylesheets/rails_admin/custom/theming-custom-5.scss
|
|
151
|
+
- app/assets/stylesheets/rails_admin/custom/theming.scss
|
|
152
|
+
- app/assets/stylesheets/rails_admin/custom/variables.scss
|
|
153
153
|
- app/assets/stylesheets/thecore_ui_rails_admin/animate.css
|
|
154
154
|
- app/assets/stylesheets/thecore_ui_rails_admin/apexcharts.scss
|
|
155
|
-
- app/assets/stylesheets/thecore_ui_rails_admin/colors.scss
|
|
156
155
|
- app/assets/stylesheets/thecore_ui_rails_admin/common.scss
|
|
157
156
|
- app/assets/stylesheets/thecore_ui_rails_admin/devise.scss
|
|
158
157
|
- app/assets/stylesheets/thecore_ui_rails_admin/flashing.scss
|
|
@@ -163,19 +162,19 @@ files:
|
|
|
163
162
|
- app/controllers/pages_controller.rb
|
|
164
163
|
- app/helpers/devise_bootstrap_errors_helper.rb
|
|
165
164
|
- app/helpers/thecore_helper.rb
|
|
166
|
-
- app/views/layouts/rails_admin/_navigation.html.haml
|
|
167
|
-
- app/views/layouts/rails_admin/_secondary_navigation.html.haml
|
|
168
|
-
- app/views/layouts/rails_admin/_sidebar_navigation.html.haml
|
|
169
|
-
- app/views/layouts/rails_admin/_style_common.html.haml
|
|
170
|
-
- app/views/layouts/rails_admin/_style_override.html.haml
|
|
171
|
-
- app/views/layouts/rails_admin/_user_navigation.html.haml
|
|
172
|
-
- app/views/layouts/rails_admin/application.html.haml
|
|
173
|
-
- app/views/layouts/rails_admin/pjax.html.haml
|
|
174
|
-
- app/views/rails_admin/main/_card.html.haml
|
|
175
|
-
- app/views/rails_admin/main/_dashboard_block.html.haml
|
|
176
|
-
- app/views/rails_admin/main/_modal_interaction.html.erb
|
|
177
|
-
- app/views/rails_admin/main/dashboard.html.haml
|
|
178
|
-
- app/views/rails_admin/main/index.html.haml
|
|
165
|
+
- app/views/layouts.old/rails_admin/_navigation.html.haml
|
|
166
|
+
- app/views/layouts.old/rails_admin/_secondary_navigation.html.haml
|
|
167
|
+
- app/views/layouts.old/rails_admin/_sidebar_navigation.html.haml
|
|
168
|
+
- app/views/layouts.old/rails_admin/_style_common.html.haml
|
|
169
|
+
- app/views/layouts.old/rails_admin/_style_override.html.haml
|
|
170
|
+
- app/views/layouts.old/rails_admin/_user_navigation.html.haml
|
|
171
|
+
- app/views/layouts.old/rails_admin/application.html.haml
|
|
172
|
+
- app/views/layouts.old/rails_admin/pjax.html.haml
|
|
173
|
+
- app/views/rails_admin.old/main/_card.html.haml
|
|
174
|
+
- app/views/rails_admin.old/main/_dashboard_block.html.haml
|
|
175
|
+
- app/views/rails_admin.old/main/_modal_interaction.html.erb
|
|
176
|
+
- app/views/rails_admin.old/main/dashboard.html.haml
|
|
177
|
+
- app/views/rails_admin.old/main/index.html.haml
|
|
179
178
|
- app/views/shared/_flash.html.erb
|
|
180
179
|
- config/initializers/rails_admin.rb
|
|
181
180
|
- config/initializers/thecore_concern.rb
|
|
@@ -188,8 +187,6 @@ files:
|
|
|
188
187
|
- config/locales/it.main.yml
|
|
189
188
|
- config/locales/it.rails_admin.yml
|
|
190
189
|
- config/locales/it.rollincode.yml
|
|
191
|
-
- config/locales/thecore_settings.en.yml
|
|
192
|
-
- config/locales/thecore_settings.it.yml
|
|
193
190
|
- config/routes.rb
|
|
194
191
|
- lib/abilities/thecore_ui_rails_admin.rb
|
|
195
192
|
- lib/concerns/rails_admin_requirements.rb
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
en:
|
|
2
|
-
settings:
|
|
3
|
-
namespaces:
|
|
4
|
-
main: Main
|
|
5
|
-
names:
|
|
6
|
-
app_name: Application Name
|
|
7
|
-
admin:
|
|
8
|
-
settings:
|
|
9
|
-
label: Settings
|
|
10
|
-
phone_invalid: Invalid Telephone
|
|
11
|
-
phones_invalid: "Invalid Telephones: %{phones}"
|
|
12
|
-
email_invalid: Invalid Email
|
|
13
|
-
yaml_invalid: Invalid Email
|
|
14
|
-
color_invalid: Invalid Color
|
|
15
|
-
mongoid: &mongoid
|
|
16
|
-
models:
|
|
17
|
-
rails_admin_settings/setting: Configurations
|
|
18
|
-
attributes:
|
|
19
|
-
rails_admin_settings/setting:
|
|
20
|
-
c_at: Created
|
|
21
|
-
u_at: Modified
|
|
22
|
-
enabled: Enabled
|
|
23
|
-
ns: Group
|
|
24
|
-
name: Name
|
|
25
|
-
key: Key
|
|
26
|
-
raw: Value
|
|
27
|
-
type: Type
|
|
28
|
-
kind: Type
|
|
29
|
-
label: Label
|
|
30
|
-
activerecord:
|
|
31
|
-
<<: *mongoid
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
it:
|
|
2
|
-
settings:
|
|
3
|
-
namespaces:
|
|
4
|
-
main: Principale
|
|
5
|
-
names:
|
|
6
|
-
app_name: Nome dell'applicazione
|
|
7
|
-
admin:
|
|
8
|
-
settings:
|
|
9
|
-
label: 'Impostazioni'
|
|
10
|
-
phone_invalid: Telefono non valido
|
|
11
|
-
phones_invalid: "Telefono non valido: %{phones}"
|
|
12
|
-
email_invalid: Email non valida
|
|
13
|
-
yaml_invalid: YAML non valido
|
|
14
|
-
color_invalid: Colore non valido
|
|
15
|
-
mongoid: &mongoid
|
|
16
|
-
models:
|
|
17
|
-
rails_admin_settings/setting: Configurazioni
|
|
18
|
-
attributes:
|
|
19
|
-
rails_admin_settings/setting:
|
|
20
|
-
c_at: Creato
|
|
21
|
-
u_at: Modificato
|
|
22
|
-
enabled: Abilitato
|
|
23
|
-
ns: Gruppo
|
|
24
|
-
name: Nome
|
|
25
|
-
key: Chiave
|
|
26
|
-
raw: Valore
|
|
27
|
-
type: Tipo
|
|
28
|
-
kind: Tipo
|
|
29
|
-
label: Etichetta
|
|
30
|
-
activerecord:
|
|
31
|
-
<<: *mongoid
|