comable_backend 0.4.2 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/comable/admin/application.coffee +53 -99
  3. data/app/assets/javascripts/comable/admin/categories.coffee +59 -0
  4. data/app/assets/javascripts/comable/admin/dashboard.coffee +32 -0
  5. data/app/assets/javascripts/comable/admin/dispatcher.coffee +21 -0
  6. data/app/assets/javascripts/comable/admin/orders.coffee +44 -0
  7. data/app/assets/javascripts/comable/admin/pages.coffee +69 -0
  8. data/app/assets/javascripts/comable/admin/products.coffee +21 -0
  9. data/app/assets/javascripts/comable/admin/search.coffee +35 -0
  10. data/app/assets/javascripts/comable/admin/themes.coffee +64 -0
  11. data/app/assets/stylesheets/comable/admin/_common.scss +1 -163
  12. data/app/assets/stylesheets/comable/admin/_overrides.scss +1 -0
  13. data/app/assets/stylesheets/comable/admin/_pages.scss +30 -0
  14. data/app/assets/stylesheets/comable/admin/_themes.scss +71 -0
  15. data/app/assets/stylesheets/comable/admin/_user_sessions.scss +4 -4
  16. data/app/assets/stylesheets/comable/admin/_variables.scss +16 -19
  17. data/app/assets/stylesheets/comable/admin/application.scss +6 -1
  18. data/app/assets/stylesheets/comable/admin/overrides/awesome_admin_layout.scss +25 -0
  19. data/app/assets/stylesheets/comable/admin/overrides/bootstrap.scss +5 -12
  20. data/app/controllers/comable/admin/orders_controller.rb +5 -1
  21. data/app/controllers/comable/admin/pages_controller.rb +72 -0
  22. data/app/controllers/comable/admin/themes_controller.rb +101 -0
  23. data/app/controllers/comable/admin/user_sessions_controller.rb +1 -0
  24. data/app/controllers/comable/admin/users_controller.rb +5 -0
  25. data/app/helpers/comable/admin/application_helper.rb +4 -4
  26. data/app/helpers/comable/admin/pages_helper.rb +6 -0
  27. data/app/helpers/comable/admin/themes_helper.rb +69 -0
  28. data/app/views/comable/admin/categories/index.slim +1 -52
  29. data/app/views/comable/admin/dashboard/show.slim +3 -23
  30. data/app/views/comable/admin/orders/_google_map.slim +26 -9
  31. data/app/views/comable/admin/orders/edit.slim +62 -4
  32. data/app/views/comable/admin/pages/_form.slim +69 -0
  33. data/app/views/comable/admin/pages/edit.slim +31 -0
  34. data/app/views/comable/admin/pages/index.slim +55 -0
  35. data/app/views/comable/admin/pages/new.slim +16 -0
  36. data/app/views/comable/admin/products/_form.slim +0 -16
  37. data/app/views/comable/admin/shared/_advanced_search.slim +0 -1
  38. data/app/views/comable/admin/shared/_notifier.slim +2 -2
  39. data/app/views/comable/admin/themes/_editor.slim +8 -0
  40. data/app/views/comable/admin/themes/_form.slim +31 -0
  41. data/app/views/comable/admin/themes/edit.slim +35 -0
  42. data/app/views/comable/admin/themes/index.slim +37 -0
  43. data/app/views/comable/admin/themes/new.slim +16 -0
  44. data/app/views/comable/admin/themes/show_file.slim +93 -0
  45. data/app/views/layouts/comable/admin/application.slim +19 -11
  46. data/config/initializers/awesome_admin_layout.rb +110 -0
  47. data/config/routes.rb +13 -0
  48. data/lib/comable/backend/engine.rb +8 -1
  49. metadata +117 -11
  50. data/app/assets/javascripts/comable/admin/products.js +0 -2
  51. data/app/views/comable/admin/shared/_header.slim +0 -31
  52. data/app/views/comable/admin/shared/_setup_search_form.slim +0 -14
  53. data/app/views/comable/admin/shared/_sidebar.slim +0 -54
@@ -0,0 +1,16 @@
1
+ .comable-page
2
+ .comable-main-fixed-top
3
+ .comable-page-heading
4
+ ul.pull-right.list-inline
5
+ li
6
+ = link_to_save
7
+
8
+ h1.page-header
9
+ ol.breadcrumb
10
+ li>
11
+ = link_to Comable.t('admin.nav.theme'), comable.admin_themes_path
12
+ li.active
13
+ = Comable.t('admin.actions.new')
14
+
15
+ .comable-page-body
16
+ = render 'form'
@@ -0,0 +1,93 @@
1
+ .comable-page
2
+ .comable-main-fixed-top
3
+ .comable-page-heading
4
+ ul.pull-right.list-inline
5
+ li
6
+ = link_to 'javascript:void();', class: 'btn btn-default', data: { toggle: 'modal', target: '#comable-help-modal' }
7
+ i.fa.fa-question-circle>
8
+ = Comable.t('admin.help')
9
+ li.btn-group
10
+ - if current_store.theme != @theme
11
+ = link_to comable.use_admin_theme_path(@theme), class: 'btn btn-default', method: 'put'
12
+ i.fa.fa-paint-brush>
13
+ = Comable.t('admin.use_this_theme')
14
+ = link_to comable.admin_theme_path(@theme), class: 'btn btn-default'
15
+ i.fa.fa-edit>
16
+ = Comable.t('admin.actions.property')
17
+ - if editable?
18
+ li
19
+ = link_to_save
20
+
21
+ h1.page-header
22
+ ol.breadcrumb
23
+ li>
24
+ = link_to Comable.t('admin.nav.theme'), comable.admin_themes_path
25
+ li.active
26
+ = @theme.display_name
27
+
28
+ .comable-page-body
29
+ .row
30
+ .col-md-3
31
+ #comable-file-tree
32
+ = display_views_directory_tree
33
+
34
+ .col-md-9
35
+ - if editable?
36
+ = render 'editor', code: @code, params: params
37
+ - else
38
+ #comable-theme-editor
39
+ .panel.panel-default
40
+ .panel-body
41
+ p
42
+ = Comable.t('admin.please_select_file_form_directory_tree_to_edit')
43
+ p
44
+ = Comable.t('admin.here_editor_will_be_displayed_and_you_can_edit_file')
45
+
46
+ .modal.fade#comable-help-modal tabindex="-1"
47
+ .modal-dialog
48
+ .modal-content
49
+ .modal-header
50
+ button.close type="button" data-dismiss="modal"
51
+ span
52
+ | ×
53
+ h4.modal-title
54
+ = Comable.t('admin.help')
55
+ .modal-body
56
+ h4
57
+ = Comable.t('admin.about_sintax')
58
+ p
59
+ = Comable.t('admin.please_see_following_page_for_syntax')
60
+ span<
61
+ = link_to 'https://github.com/Shopify/liquid/wiki/Liquid-for-Designers', target: '_blank' do
62
+ | Liquid for Designers
63
+ i.fa.fa-external-link<
64
+
65
+ .row
66
+ .col-sm-6
67
+ h4
68
+ = Comable.t('admin.available_assigns')
69
+ dl
70
+ dt
71
+ = Comable.t('admin.available_assigns_in_all_pages')
72
+ - %w( current_store current_comable_user current_order current_trackers form_authenticity_token ).each do |method|
73
+ dd
74
+ code
75
+ | #{method}
76
+ - liquidable_models.each do |model|
77
+ dl
78
+ dt
79
+ = model.model_name.human
80
+ - model.available_liquid_methods.each do |method|
81
+ dd
82
+ code
83
+ | #{model.name.demodulize.underscore}.#{method}
84
+ .col-sm-6
85
+ h4
86
+ = Comable.t('admin.available_filters')
87
+ dl
88
+ dt
89
+ - helpers = [ActionView::Helpers::AssetTagHelper, ActionView::Helpers::TranslationHelper, ActionView::Helpers::NumberHelper]
90
+ - helpers.map(&:public_instance_methods).flatten.sort.each do |method|
91
+ dd
92
+ code
93
+ | #{method}
@@ -4,24 +4,32 @@ html
4
4
  meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport"
5
5
  title
6
6
  = Comable.app_name
7
+ = stylesheet_link_tag 'comable/admin/application', media: 'all', 'data-turbolinks-track' => true
8
+ = javascript_include_tag 'comable/admin/application', 'data-turbolinks-track' => true
9
+
7
10
  = yield :head
8
- = stylesheet_link_tag 'comable/admin/application', media: 'all'
9
- = javascript_include_tag 'comable/admin/application'
11
+
12
+ / TODO: Use downloaded files
13
+ = stylesheet_link_tag 'http://rawgit.com/vakata/jstree/3.0.9/dist/themes/default/style.min.css', media: 'all', 'data-turbolinks-track' => true
14
+ = javascript_include_tag 'http://rawgit.com/vakata/jstree/3.0.9/dist/jstree.min.js', 'data-turbolinks-track' => true
15
+
16
+ / TODO: Use downloaded files
17
+ = stylesheet_link_tag 'http://rawgithub.com/aehlke/tag-it/master/css/jquery.tagit.css', media: 'all', 'data-turbolinks-track' => true
18
+ = stylesheet_link_tag 'http://rawgithub.com/aehlke/tag-it/master/css/tagit.ui-zendesk.css', media: 'all', 'data-turbolinks-track' => true
19
+ = javascript_include_tag 'http://rawgithub.com/aehlke/tag-it/master/js/tag-it.min.js', 'data-turbolinks-track' => true
20
+
10
21
  = csrf_meta_tags
11
22
 
12
- body id="#{"comable-#{controller_name.singularize}"}"
23
+ body id="#{"comable-#{controller_name.singularize}"}" data-page="#{page_name}"
13
24
  = render 'comable/admin/shared/notifier'
14
25
 
15
26
  - if current_comable_user.signed_in?
16
- = render 'comable/admin/shared/header'
17
-
18
- #wrapper
19
- = render 'comable/admin/shared/sidebar'
20
-
21
- main.container-fluid
22
- = yield
27
+ == render_admin_layout do
28
+ #wrapper
29
+ main.container-fluid
30
+ = yield
23
31
 
24
- = render 'comable/admin/shared/footer'
32
+ = render 'comable/admin/shared/footer'
25
33
  - else
26
34
  main
27
35
  = yield
@@ -0,0 +1,110 @@
1
+ AwesomeAdminLayout.setup(only: Comable::Admin::ApplicationController) do |controller|
2
+ comable = controller.comable
3
+ current_comable_user = controller.current_comable_user
4
+
5
+ navigation do
6
+ brand Comable.app_name do
7
+ external_link comable.root_path
8
+ end
9
+
10
+ item Comable.t('admin.nav.dashboard') do
11
+ link comable.admin_root_path
12
+ icon 'dashboard'
13
+ end
14
+
15
+ item Comable.t('admin.nav.order') do
16
+ link comable.admin_orders_path
17
+ icon 'shopping-cart'
18
+ end
19
+
20
+ item Comable.t('admin.nav.product') do
21
+ nest :products
22
+ icon 'cube'
23
+ end
24
+
25
+ item Comable.t('admin.nav.user') do
26
+ link comable.admin_users_path
27
+ icon 'user'
28
+ active controller.controller_name == 'users' && controller.action_name != 'profile'
29
+ end
30
+
31
+ divider
32
+
33
+ item Comable.t('admin.nav.store') do
34
+ nest :store
35
+ icon 'home'
36
+ end
37
+
38
+ flex_divider
39
+
40
+ item current_comable_user.email do
41
+ nest :profile
42
+ icon 'gift'
43
+ end
44
+ end
45
+
46
+ navigation :products do
47
+ brand Comable.t('admin.nav.product')
48
+
49
+ item Comable.t('admin.nav.products.list') do
50
+ link comable.admin_products_path(hoge: 112)
51
+ end
52
+
53
+ item Comable.t('admin.nav.stock') do
54
+ link comable.admin_stocks_path
55
+ end
56
+
57
+ item Comable.t('admin.nav.category') do
58
+ link comable.admin_categories_path
59
+ end
60
+ end
61
+
62
+ navigation :store do
63
+ brand Comable.t('admin.nav.store') do
64
+ external_link comable.root_path
65
+ end
66
+
67
+ item Comable.t('admin.nav.theme') do
68
+ link comable.admin_themes_path
69
+ end
70
+
71
+ item Comable.t('admin.nav.page') do
72
+ link comable.admin_pages_path
73
+ end
74
+
75
+ divider
76
+
77
+ item Comable.t('admin.nav.shipment_method') do
78
+ link comable.admin_shipment_methods_path
79
+ end
80
+
81
+ item Comable.t('admin.nav.payment_method') do
82
+ link comable.admin_payment_methods_path
83
+ end
84
+
85
+ item Comable.t('admin.nav.tracker') do
86
+ link comable.admin_trackers_path
87
+ end
88
+
89
+ divider
90
+
91
+ item Comable.t('admin.nav.store') do
92
+ link comable.admin_store_path
93
+ end
94
+ end
95
+
96
+ navigation :profile do
97
+ brand current_comable_user.email
98
+
99
+ item Comable.t('admin.edit_profile') do
100
+ link comable.admin_profile_path
101
+ active controller.controller_name == 'users' && controller.action_name == 'profile'
102
+ end
103
+
104
+ divider
105
+
106
+ item Comable.t('admin.sign_out') do
107
+ link comable.destroy_user_session_path, method: :delete
108
+ end
109
+ end
110
+ end
@@ -37,14 +37,27 @@ Comable::Core::Engine.routes.draw do
37
37
  end
38
38
 
39
39
  resources :categories
40
+ resources :pages
40
41
  resources :users
41
42
  resources :shipment_methods
42
43
  resources :payment_methods
43
44
  resources :trackers
45
+
46
+ resources :themes do
47
+ member do
48
+ get 'tree', action: :tree, as: :tree
49
+ get 'file/*path', action: :show_file, constraints: { path: /.+/, format: false }, as: :file
50
+ put 'file/*path', action: :update_file, constraints: { path: /.+/, format: false }
51
+ put :use
52
+ end
53
+ end
54
+
44
55
  resource :store, controller: :store, only: [:show, :edit, :update]
45
56
 
46
57
  devise_for :user, path: :user, class_name: Comable::User.name, module: :devise, controllers: {
47
58
  sessions: 'comable/admin/user_sessions'
48
59
  }
60
+
61
+ get :profile, controller: :users
49
62
  end
50
63
  end
@@ -14,8 +14,15 @@ require 'jquery-rails'
14
14
  require 'jquery-ui-rails'
15
15
  require 'raphael-rails'
16
16
  require 'morrisjs-rails'
17
- require 'pace/rails'
17
+ require 'nprogress-rails'
18
18
  require 'gritter'
19
+ require 'turbolinks'
20
+ require 'jquery-turbolinks'
21
+ require 'awesome_admin_layout'
22
+ require 'ace-rails-ap'
23
+
24
+ require 'bootstrap3-datetimepicker-rails'
25
+ require 'momentjs-rails'
19
26
 
20
27
  module Comable
21
28
  module Backend
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: comable_backend
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - YOSHIDA Hiroki
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-01 00:00:00.000000000 Z
11
+ date: 2015-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: comable_core
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 0.4.2
19
+ version: 0.5.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 0.4.2
26
+ version: 0.5.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rails
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -253,19 +253,19 @@ dependencies:
253
253
  - !ruby/object:Gem::Version
254
254
  version: 0.5.1
255
255
  - !ruby/object:Gem::Dependency
256
- name: pace-rails
256
+ name: nprogress-rails
257
257
  requirement: !ruby/object:Gem::Requirement
258
258
  requirements:
259
259
  - - "~>"
260
260
  - !ruby/object:Gem::Version
261
- version: 0.1.3
261
+ version: 0.1.6.7
262
262
  type: :runtime
263
263
  prerelease: false
264
264
  version_requirements: !ruby/object:Gem::Requirement
265
265
  requirements:
266
266
  - - "~>"
267
267
  - !ruby/object:Gem::Version
268
- version: 0.1.3
268
+ version: 0.1.6.7
269
269
  - !ruby/object:Gem::Dependency
270
270
  name: gritter
271
271
  requirement: !ruby/object:Gem::Requirement
@@ -280,6 +280,90 @@ dependencies:
280
280
  - - "~>"
281
281
  - !ruby/object:Gem::Version
282
282
  version: 1.1.0
283
+ - !ruby/object:Gem::Dependency
284
+ name: turbolinks
285
+ requirement: !ruby/object:Gem::Requirement
286
+ requirements:
287
+ - - "~>"
288
+ - !ruby/object:Gem::Version
289
+ version: 2.5.3
290
+ type: :runtime
291
+ prerelease: false
292
+ version_requirements: !ruby/object:Gem::Requirement
293
+ requirements:
294
+ - - "~>"
295
+ - !ruby/object:Gem::Version
296
+ version: 2.5.3
297
+ - !ruby/object:Gem::Dependency
298
+ name: jquery-turbolinks
299
+ requirement: !ruby/object:Gem::Requirement
300
+ requirements:
301
+ - - "~>"
302
+ - !ruby/object:Gem::Version
303
+ version: 2.1.0
304
+ type: :runtime
305
+ prerelease: false
306
+ version_requirements: !ruby/object:Gem::Requirement
307
+ requirements:
308
+ - - "~>"
309
+ - !ruby/object:Gem::Version
310
+ version: 2.1.0
311
+ - !ruby/object:Gem::Dependency
312
+ name: awesome_admin_layout
313
+ requirement: !ruby/object:Gem::Requirement
314
+ requirements:
315
+ - - "~>"
316
+ - !ruby/object:Gem::Version
317
+ version: 0.1.1
318
+ type: :runtime
319
+ prerelease: false
320
+ version_requirements: !ruby/object:Gem::Requirement
321
+ requirements:
322
+ - - "~>"
323
+ - !ruby/object:Gem::Version
324
+ version: 0.1.1
325
+ - !ruby/object:Gem::Dependency
326
+ name: ace-rails-ap
327
+ requirement: !ruby/object:Gem::Requirement
328
+ requirements:
329
+ - - "~>"
330
+ - !ruby/object:Gem::Version
331
+ version: 3.0.2
332
+ type: :runtime
333
+ prerelease: false
334
+ version_requirements: !ruby/object:Gem::Requirement
335
+ requirements:
336
+ - - "~>"
337
+ - !ruby/object:Gem::Version
338
+ version: 3.0.2
339
+ - !ruby/object:Gem::Dependency
340
+ name: momentjs-rails
341
+ requirement: !ruby/object:Gem::Requirement
342
+ requirements:
343
+ - - "~>"
344
+ - !ruby/object:Gem::Version
345
+ version: 2.10.2
346
+ type: :runtime
347
+ prerelease: false
348
+ version_requirements: !ruby/object:Gem::Requirement
349
+ requirements:
350
+ - - "~>"
351
+ - !ruby/object:Gem::Version
352
+ version: 2.10.2
353
+ - !ruby/object:Gem::Dependency
354
+ name: bootstrap3-datetimepicker-rails
355
+ requirement: !ruby/object:Gem::Requirement
356
+ requirements:
357
+ - - "~>"
358
+ - !ruby/object:Gem::Version
359
+ version: 4.7.14
360
+ type: :runtime
361
+ prerelease: false
362
+ version_requirements: !ruby/object:Gem::Requirement
363
+ requirements:
364
+ - - "~>"
365
+ - !ruby/object:Gem::Version
366
+ version: 4.7.14
283
367
  description: Provide backend functions for Comable.
284
368
  email:
285
369
  - hyoshida@appirits.com
@@ -290,7 +374,14 @@ files:
290
374
  - MIT-LICENSE
291
375
  - Rakefile
292
376
  - app/assets/javascripts/comable/admin/application.coffee
293
- - app/assets/javascripts/comable/admin/products.js
377
+ - app/assets/javascripts/comable/admin/categories.coffee
378
+ - app/assets/javascripts/comable/admin/dashboard.coffee
379
+ - app/assets/javascripts/comable/admin/dispatcher.coffee
380
+ - app/assets/javascripts/comable/admin/orders.coffee
381
+ - app/assets/javascripts/comable/admin/pages.coffee
382
+ - app/assets/javascripts/comable/admin/products.coffee
383
+ - app/assets/javascripts/comable/admin/search.coffee
384
+ - app/assets/javascripts/comable/admin/themes.coffee
294
385
  - app/assets/stylesheets/comable/admin/_common.scss
295
386
  - app/assets/stylesheets/comable/admin/_dashboard.scss
296
387
  - app/assets/stylesheets/comable/admin/_errors.scss
@@ -298,10 +389,13 @@ files:
298
389
  - app/assets/stylesheets/comable/admin/_mixins.scss
299
390
  - app/assets/stylesheets/comable/admin/_orders.scss
300
391
  - app/assets/stylesheets/comable/admin/_overrides.scss
392
+ - app/assets/stylesheets/comable/admin/_pages.scss
301
393
  - app/assets/stylesheets/comable/admin/_products.scss
394
+ - app/assets/stylesheets/comable/admin/_themes.scss
302
395
  - app/assets/stylesheets/comable/admin/_user_sessions.scss
303
396
  - app/assets/stylesheets/comable/admin/_variables.scss
304
397
  - app/assets/stylesheets/comable/admin/application.scss
398
+ - app/assets/stylesheets/comable/admin/overrides/awesome_admin_layout.scss
305
399
  - app/assets/stylesheets/comable/admin/overrides/bootstrap.scss
306
400
  - app/assets/stylesheets/comable/admin/overrides/jstree.scss
307
401
  - app/assets/stylesheets/comable/admin/overrides/tagit.scss
@@ -309,19 +403,23 @@ files:
309
403
  - app/controllers/comable/admin/categories_controller.rb
310
404
  - app/controllers/comable/admin/dashboard_controller.rb
311
405
  - app/controllers/comable/admin/orders_controller.rb
406
+ - app/controllers/comable/admin/pages_controller.rb
312
407
  - app/controllers/comable/admin/payment_methods_controller.rb
313
408
  - app/controllers/comable/admin/products_controller.rb
314
409
  - app/controllers/comable/admin/shipment_methods_controller.rb
315
410
  - app/controllers/comable/admin/stocks_controller.rb
316
411
  - app/controllers/comable/admin/store_controller.rb
412
+ - app/controllers/comable/admin/themes_controller.rb
317
413
  - app/controllers/comable/admin/trackers_controller.rb
318
414
  - app/controllers/comable/admin/user_sessions_controller.rb
319
415
  - app/controllers/comable/admin/users_controller.rb
320
416
  - app/helpers/comable/admin/application_helper.rb
321
417
  - app/helpers/comable/admin/orders_helper.rb
418
+ - app/helpers/comable/admin/pages_helper.rb
322
419
  - app/helpers/comable/admin/products_helper.rb
323
420
  - app/helpers/comable/admin/shipment_methods_helper.rb
324
421
  - app/helpers/comable/admin/stores_helper.rb
422
+ - app/helpers/comable/admin/themes_helper.rb
325
423
  - app/views/comable/admin/categories/index.slim
326
424
  - app/views/comable/admin/dashboard/_widget.slim
327
425
  - app/views/comable/admin/dashboard/show.slim
@@ -331,6 +429,10 @@ files:
331
429
  - app/views/comable/admin/orders/edit.slim
332
430
  - app/views/comable/admin/orders/index.slim
333
431
  - app/views/comable/admin/orders/show.slim
432
+ - app/views/comable/admin/pages/_form.slim
433
+ - app/views/comable/admin/pages/edit.slim
434
+ - app/views/comable/admin/pages/index.slim
435
+ - app/views/comable/admin/pages/new.slim
334
436
  - app/views/comable/admin/payment_methods/_form.slim
335
437
  - app/views/comable/admin/payment_methods/edit.slim
336
438
  - app/views/comable/admin/payment_methods/index.slim
@@ -343,11 +445,8 @@ files:
343
445
  - app/views/comable/admin/shared/_condition_fields.slim
344
446
  - app/views/comable/admin/shared/_footer.slim
345
447
  - app/views/comable/admin/shared/_grouping_fields.slim
346
- - app/views/comable/admin/shared/_header.slim
347
448
  - app/views/comable/admin/shared/_image_fields.slim
348
449
  - app/views/comable/admin/shared/_notifier.slim
349
- - app/views/comable/admin/shared/_setup_search_form.slim
350
- - app/views/comable/admin/shared/_sidebar.slim
351
450
  - app/views/comable/admin/shared/_value_fields.slim
352
451
  - app/views/comable/admin/shared/export.xlsx.axlsx
353
452
  - app/views/comable/admin/shipment_methods/_form.slim
@@ -360,6 +459,12 @@ files:
360
459
  - app/views/comable/admin/stocks/new.slim
361
460
  - app/views/comable/admin/store/_form.slim
362
461
  - app/views/comable/admin/store/edit.slim
462
+ - app/views/comable/admin/themes/_editor.slim
463
+ - app/views/comable/admin/themes/_form.slim
464
+ - app/views/comable/admin/themes/edit.slim
465
+ - app/views/comable/admin/themes/index.slim
466
+ - app/views/comable/admin/themes/new.slim
467
+ - app/views/comable/admin/themes/show_file.slim
363
468
  - app/views/comable/admin/trackers/_form.slim
364
469
  - app/views/comable/admin/trackers/edit.slim
365
470
  - app/views/comable/admin/trackers/index.slim
@@ -376,6 +481,7 @@ files:
376
481
  - app/views/kaminari/comable_backend/_paginator.html.slim
377
482
  - app/views/kaminari/comable_backend/_prev_page.html.slim
378
483
  - app/views/layouts/comable/admin/application.slim
484
+ - config/initializers/awesome_admin_layout.rb
379
485
  - config/routes.rb
380
486
  - lib/comable/backend/engine.rb
381
487
  - lib/comable_backend.rb