activeadmin 2.9.0 → 3.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (278) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +284 -1
  3. data/CONTRIBUTING.md +4 -12
  4. data/README.md +2 -2
  5. data/app/assets/javascripts/active_admin/base.js +13 -9
  6. data/app/assets/stylesheets/active_admin/_base.scss +53 -37
  7. data/app/assets/stylesheets/active_admin/_forms.scss +1 -11
  8. data/app/assets/stylesheets/active_admin/_normalize.scss +25 -123
  9. data/app/assets/stylesheets/active_admin/components/_date_picker.scss +1 -2
  10. data/app/assets/stylesheets/active_admin/components/_dropdown_menu.scss +0 -1
  11. data/app/assets/stylesheets/active_admin/mixins/_variables.scss +9 -0
  12. data/app/assets/stylesheets/active_admin/structure/_footer.scss +6 -1
  13. data/app/assets/stylesheets/active_admin/structure/_title_bar.scss +0 -1
  14. data/app/javascript/active_admin/initializers/has-many.js +4 -1
  15. data/app/views/active_admin/devise/shared/_links.erb +1 -1
  16. data/app/views/active_admin/page/index.html.arb +1 -0
  17. data/app/views/active_admin/resource/edit.html.arb +1 -0
  18. data/app/views/active_admin/resource/index.html.arb +1 -0
  19. data/app/views/active_admin/resource/new.html.arb +1 -0
  20. data/app/views/active_admin/resource/show.html.arb +1 -0
  21. data/app/views/layouts/active_admin.html.arb +1 -0
  22. data/app/views/layouts/active_admin_logged_out.html.erb +5 -4
  23. data/config/locales/ar.yml +0 -7
  24. data/config/locales/az.yml +0 -7
  25. data/config/locales/bg.yml +0 -7
  26. data/config/locales/bs.yml +0 -7
  27. data/config/locales/ca.yml +0 -7
  28. data/config/locales/cs.yml +0 -7
  29. data/config/locales/da.yml +0 -7
  30. data/config/locales/de-CH.yml +0 -7
  31. data/config/locales/de.yml +0 -8
  32. data/config/locales/el.yml +0 -7
  33. data/config/locales/en-CA.yml +0 -7
  34. data/config/locales/en-GB.yml +0 -7
  35. data/config/locales/en.yml +0 -8
  36. data/config/locales/eo.yml +0 -8
  37. data/config/locales/es-MX.yml +0 -7
  38. data/config/locales/es.yml +0 -8
  39. data/config/locales/fa.yml +0 -7
  40. data/config/locales/fi.yml +0 -7
  41. data/config/locales/fr.yml +3 -11
  42. data/config/locales/he.yml +0 -9
  43. data/config/locales/hr.yml +0 -7
  44. data/config/locales/hu.yml +0 -8
  45. data/config/locales/id.yml +0 -7
  46. data/config/locales/it.yml +0 -8
  47. data/config/locales/ja.yml +0 -8
  48. data/config/locales/ko.yml +1 -8
  49. data/config/locales/lt.yml +0 -8
  50. data/config/locales/lv.yml +0 -7
  51. data/config/locales/mk.yml +0 -8
  52. data/config/locales/nb.yml +0 -8
  53. data/config/locales/nl.yml +1 -9
  54. data/config/locales/pl.yml +0 -8
  55. data/config/locales/pt-BR.yml +0 -8
  56. data/config/locales/pt-PT.yml +0 -7
  57. data/config/locales/ro.yml +3 -9
  58. data/config/locales/ru.yml +0 -6
  59. data/config/locales/sk.yml +0 -8
  60. data/config/locales/sv-SE.yml +58 -39
  61. data/config/locales/tr.yml +0 -11
  62. data/config/locales/uk.yml +0 -6
  63. data/config/locales/vi.yml +34 -15
  64. data/config/locales/zh-CN.yml +34 -23
  65. data/config/locales/zh-TW.yml +0 -7
  66. data/lib/active_admin/abstract_view_factory.rb +1 -0
  67. data/lib/active_admin/application.rb +10 -10
  68. data/lib/active_admin/application_settings.rb +1 -0
  69. data/lib/active_admin/asset_registration.rb +4 -3
  70. data/lib/active_admin/authorization_adapter.rb +3 -0
  71. data/lib/active_admin/base_controller/authorization.rb +4 -3
  72. data/lib/active_admin/base_controller/menu.rb +1 -0
  73. data/lib/active_admin/base_controller.rb +2 -1
  74. data/lib/active_admin/batch_actions/controller.rb +1 -0
  75. data/lib/active_admin/batch_actions/resource_extension.rb +1 -0
  76. data/lib/active_admin/batch_actions/views/batch_action_form.rb +1 -0
  77. data/lib/active_admin/batch_actions/views/batch_action_selector.rb +1 -0
  78. data/lib/active_admin/batch_actions/views/selection_cells.rb +1 -0
  79. data/lib/active_admin/batch_actions.rb +1 -0
  80. data/lib/active_admin/callbacks.rb +1 -0
  81. data/lib/active_admin/cancan_adapter.rb +1 -0
  82. data/lib/active_admin/collection_decorator.rb +1 -0
  83. data/lib/active_admin/component.rb +1 -0
  84. data/lib/active_admin/controller_action.rb +1 -0
  85. data/lib/active_admin/csv_builder.rb +24 -16
  86. data/lib/active_admin/dependency.rb +1 -4
  87. data/lib/active_admin/devise.rb +11 -0
  88. data/lib/active_admin/dsl.rb +1 -0
  89. data/lib/active_admin/dynamic_setting.rb +1 -0
  90. data/lib/active_admin/dynamic_settings_node.rb +1 -0
  91. data/lib/active_admin/engine.rb +8 -2
  92. data/lib/active_admin/error.rb +1 -0
  93. data/lib/active_admin/filters/active.rb +1 -0
  94. data/lib/active_admin/filters/active_filter.rb +2 -1
  95. data/lib/active_admin/filters/active_sidebar.rb +2 -28
  96. data/lib/active_admin/filters/dsl.rb +1 -0
  97. data/lib/active_admin/filters/forms.rb +3 -2
  98. data/lib/active_admin/filters/formtastic_addons.rb +2 -1
  99. data/lib/active_admin/filters/resource_extension.rb +5 -4
  100. data/lib/active_admin/filters.rb +1 -0
  101. data/lib/active_admin/form_builder.rb +1 -0
  102. data/lib/active_admin/generators/boilerplate.rb +1 -0
  103. data/lib/active_admin/helpers/collection.rb +2 -0
  104. data/lib/active_admin/helpers/i18n.rb +1 -0
  105. data/lib/active_admin/helpers/optional_display.rb +1 -0
  106. data/lib/active_admin/helpers/routes/url_helpers.rb +1 -0
  107. data/lib/active_admin/helpers/scope_chain.rb +1 -0
  108. data/lib/active_admin/inputs/datepicker_input.rb +1 -0
  109. data/lib/active_admin/inputs/filters/base/search_method_select.rb +3 -2
  110. data/lib/active_admin/inputs/filters/base.rb +1 -0
  111. data/lib/active_admin/inputs/filters/boolean_input.rb +1 -0
  112. data/lib/active_admin/inputs/filters/check_boxes_input.rb +1 -0
  113. data/lib/active_admin/inputs/filters/date_picker_input.rb +1 -0
  114. data/lib/active_admin/inputs/filters/date_range_input.rb +3 -2
  115. data/lib/active_admin/inputs/filters/numeric_input.rb +2 -1
  116. data/lib/active_admin/inputs/filters/select_input.rb +3 -0
  117. data/lib/active_admin/inputs/filters/string_input.rb +2 -1
  118. data/lib/active_admin/inputs/filters/text_input.rb +1 -0
  119. data/lib/active_admin/inputs.rb +1 -0
  120. data/lib/active_admin/localizers/resource_localizer.rb +1 -0
  121. data/lib/active_admin/localizers.rb +1 -0
  122. data/lib/active_admin/menu.rb +2 -0
  123. data/lib/active_admin/menu_collection.rb +1 -0
  124. data/lib/active_admin/menu_item.rb +1 -0
  125. data/lib/active_admin/namespace.rb +4 -3
  126. data/lib/active_admin/namespace_settings.rb +2 -1
  127. data/lib/active_admin/order_clause.rb +1 -0
  128. data/lib/active_admin/orm/active_record/comments/comment.rb +9 -0
  129. data/lib/active_admin/orm/active_record/comments/namespace_helper.rb +1 -0
  130. data/lib/active_admin/orm/active_record/comments/resource_helper.rb +1 -0
  131. data/lib/active_admin/orm/active_record/comments/show_page_helper.rb +1 -0
  132. data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +2 -1
  133. data/lib/active_admin/orm/active_record/comments/views.rb +1 -0
  134. data/lib/active_admin/orm/active_record/comments.rb +9 -8
  135. data/lib/active_admin/orm/active_record.rb +1 -0
  136. data/lib/active_admin/orm/mongoid.rb +1 -0
  137. data/lib/active_admin/page.rb +1 -0
  138. data/lib/active_admin/page_controller.rb +1 -0
  139. data/lib/active_admin/page_dsl.rb +1 -0
  140. data/lib/active_admin/page_presenter.rb +1 -0
  141. data/lib/active_admin/pundit_adapter.rb +55 -13
  142. data/lib/active_admin/resource/action_items.rb +3 -2
  143. data/lib/active_admin/resource/attributes.rb +1 -0
  144. data/lib/active_admin/resource/belongs_to.rb +1 -0
  145. data/lib/active_admin/resource/controllers.rb +1 -0
  146. data/lib/active_admin/resource/includes.rb +1 -0
  147. data/lib/active_admin/resource/menu.rb +1 -0
  148. data/lib/active_admin/resource/model.rb +1 -0
  149. data/lib/active_admin/resource/naming.rb +1 -0
  150. data/lib/active_admin/resource/ordering.rb +1 -0
  151. data/lib/active_admin/resource/page_presenters.rb +1 -0
  152. data/lib/active_admin/resource/pagination.rb +1 -0
  153. data/lib/active_admin/resource/routes.rb +1 -0
  154. data/lib/active_admin/resource/scope_to.rb +1 -0
  155. data/lib/active_admin/resource/scopes.rb +1 -0
  156. data/lib/active_admin/resource/sidebars.rb +1 -0
  157. data/lib/active_admin/resource.rb +3 -2
  158. data/lib/active_admin/resource_collection.rb +1 -0
  159. data/lib/active_admin/resource_controller/action_builder.rb +1 -0
  160. data/lib/active_admin/resource_controller/data_access.rb +30 -4
  161. data/lib/active_admin/resource_controller/decorators.rb +1 -0
  162. data/lib/active_admin/resource_controller/polymorphic_routes.rb +1 -0
  163. data/lib/active_admin/resource_controller/resource_class_methods.rb +1 -0
  164. data/lib/active_admin/resource_controller/scoping.rb +1 -0
  165. data/lib/active_admin/resource_controller/sidebars.rb +1 -0
  166. data/lib/active_admin/resource_controller/streaming.rb +3 -2
  167. data/lib/active_admin/resource_controller.rb +1 -0
  168. data/lib/active_admin/resource_dsl.rb +7 -21
  169. data/lib/active_admin/router.rb +1 -0
  170. data/lib/active_admin/scope.rb +1 -0
  171. data/lib/active_admin/settings_node.rb +1 -0
  172. data/lib/active_admin/sidebar_section.rb +1 -0
  173. data/lib/active_admin/version.rb +2 -1
  174. data/lib/active_admin/view_factory.rb +1 -0
  175. data/lib/active_admin/view_helpers/active_admin_application_helper.rb +1 -0
  176. data/lib/active_admin/view_helpers/auto_link_helper.rb +2 -1
  177. data/lib/active_admin/view_helpers/breadcrumb_helper.rb +1 -0
  178. data/lib/active_admin/view_helpers/display_helper.rb +19 -4
  179. data/lib/active_admin/view_helpers/download_format_links_helper.rb +1 -0
  180. data/lib/active_admin/view_helpers/fields_for.rb +1 -0
  181. data/lib/active_admin/view_helpers/flash_helper.rb +1 -0
  182. data/lib/active_admin/view_helpers/form_helper.rb +1 -0
  183. data/lib/active_admin/view_helpers/method_or_proc_helper.rb +1 -0
  184. data/lib/active_admin/view_helpers/scope_name_helper.rb +1 -0
  185. data/lib/active_admin/view_helpers/sidebar_helper.rb +1 -0
  186. data/lib/active_admin/view_helpers/title_helper.rb +1 -0
  187. data/lib/active_admin/view_helpers/view_factory_helper.rb +1 -0
  188. data/lib/active_admin/view_helpers.rb +1 -0
  189. data/lib/active_admin/views/action_items.rb +1 -0
  190. data/lib/active_admin/views/components/active_admin_form.rb +2 -5
  191. data/lib/active_admin/views/components/active_filters_sidebar_content.rb +59 -0
  192. data/lib/active_admin/views/components/attributes_table.rb +1 -0
  193. data/lib/active_admin/views/components/blank_slate.rb +1 -0
  194. data/lib/active_admin/views/components/columns.rb +1 -0
  195. data/lib/active_admin/views/components/dropdown_menu.rb +3 -5
  196. data/lib/active_admin/views/components/index_list.rb +1 -0
  197. data/lib/active_admin/views/components/menu.rb +1 -0
  198. data/lib/active_admin/views/components/menu_item.rb +1 -0
  199. data/lib/active_admin/views/components/paginated_collection.rb +1 -0
  200. data/lib/active_admin/views/components/panel.rb +1 -0
  201. data/lib/active_admin/views/components/scopes.rb +1 -0
  202. data/lib/active_admin/views/components/sidebar.rb +1 -0
  203. data/lib/active_admin/views/components/sidebar_section.rb +1 -0
  204. data/lib/active_admin/views/components/site_title.rb +1 -0
  205. data/lib/active_admin/views/components/status_tag.rb +1 -0
  206. data/lib/active_admin/views/components/table_for.rb +1 -0
  207. data/lib/active_admin/views/components/tabs.rb +1 -0
  208. data/lib/active_admin/views/components/unsupported_browser.rb +1 -0
  209. data/lib/active_admin/views/footer.rb +1 -0
  210. data/lib/active_admin/views/header.rb +1 -0
  211. data/lib/active_admin/views/index_as_block.rb +1 -0
  212. data/lib/active_admin/views/index_as_blog.rb +1 -0
  213. data/lib/active_admin/views/index_as_grid.rb +1 -0
  214. data/lib/active_admin/views/index_as_table.rb +2 -5
  215. data/lib/active_admin/views/pages/base.rb +8 -4
  216. data/lib/active_admin/views/pages/form.rb +1 -0
  217. data/lib/active_admin/views/pages/index.rb +2 -1
  218. data/lib/active_admin/views/pages/layout.rb +1 -0
  219. data/lib/active_admin/views/pages/page.rb +1 -0
  220. data/lib/active_admin/views/pages/show.rb +2 -7
  221. data/lib/active_admin/views/tabbed_navigation.rb +1 -0
  222. data/lib/active_admin/views/title_bar.rb +1 -0
  223. data/lib/active_admin/views.rb +1 -0
  224. data/lib/active_admin.rb +6 -3
  225. data/lib/activeadmin.rb +1 -0
  226. data/lib/generators/active_admin/assets/assets_generator.rb +1 -0
  227. data/lib/generators/active_admin/devise/devise_generator.rb +1 -0
  228. data/lib/generators/active_admin/install/install_generator.rb +1 -0
  229. data/lib/generators/active_admin/install/templates/active_admin.rb.erb +18 -1
  230. data/lib/generators/active_admin/install/templates/dashboard.rb +1 -0
  231. data/lib/generators/active_admin/page/page_generator.rb +1 -0
  232. data/lib/generators/active_admin/page/templates/page.rb +1 -0
  233. data/lib/generators/active_admin/resource/resource_generator.rb +1 -0
  234. data/lib/generators/active_admin/webpacker/webpacker_generator.rb +1 -0
  235. metadata +26 -83
  236. data/docs/.gitignore +0 -1
  237. data/docs/0-installation.md +0 -142
  238. data/docs/1-general-configuration.md +0 -224
  239. data/docs/10-custom-pages.md +0 -150
  240. data/docs/11-decorators.md +0 -70
  241. data/docs/12-arbre-components.md +0 -214
  242. data/docs/13-authorization-adapter.md +0 -285
  243. data/docs/14-gotchas.md +0 -138
  244. data/docs/2-resource-customization.md +0 -475
  245. data/docs/3-index-pages/custom-index.md +0 -35
  246. data/docs/3-index-pages/index-as-block.md +0 -19
  247. data/docs/3-index-pages/index-as-blog.md +0 -69
  248. data/docs/3-index-pages/index-as-grid.md +0 -27
  249. data/docs/3-index-pages/index-as-table.md +0 -234
  250. data/docs/3-index-pages.md +0 -328
  251. data/docs/4-csv-format.md +0 -74
  252. data/docs/5-forms.md +0 -237
  253. data/docs/6-show-pages.md +0 -93
  254. data/docs/7-sidebars.md +0 -75
  255. data/docs/8-custom-actions.md +0 -177
  256. data/docs/9-batch-actions.md +0 -237
  257. data/docs/CNAME +0 -1
  258. data/docs/Gemfile +0 -3
  259. data/docs/Gemfile.lock +0 -259
  260. data/docs/README.md +0 -24
  261. data/docs/_config.yml +0 -4
  262. data/docs/_includes/footer.html +0 -8
  263. data/docs/_includes/google-analytics.html +0 -16
  264. data/docs/_includes/head.html +0 -7
  265. data/docs/_includes/toc.html +0 -98
  266. data/docs/_includes/top-menu.html +0 -17
  267. data/docs/_layouts/default.html +0 -21
  268. data/docs/documentation.md +0 -60
  269. data/docs/images/activeadmin.png +0 -0
  270. data/docs/images/code-header.png +0 -0
  271. data/docs/images/divider.png +0 -0
  272. data/docs/images/features.png +0 -0
  273. data/docs/images/tidelift.svg +0 -14
  274. data/docs/index.html +0 -226
  275. data/docs/stylesheets/main.css +0 -1205
  276. data/lib/active_admin/deprecation.rb +0 -10
  277. data/lib/ransack_ext.rb +0 -20
  278. /data/app/assets/stylesheets/active_admin/{print.scss → _print.scss} +0 -0
@@ -1,237 +0,0 @@
1
- ---
2
- redirect_from: /docs/9-batch-actions.html
3
- ---
4
-
5
- # Batch Actions
6
-
7
- By default, the index page provides you a "Batch Action" to quickly delete records,
8
- as well as an API for you to easily create your own. Note that if you override the
9
- default index, you must add `selectable_column` back for batch actions to be usable:
10
-
11
- ```ruby
12
- index do
13
- selectable_column
14
- # ...
15
- end
16
- ```
17
-
18
- ## Creating your own
19
-
20
- Use the `batch_action` DSL method to create your own. It behaves just like a
21
- controller method, so you can send the client whatever data you like. Your block
22
- is passed an array of the record IDs that the user selected, so you can perform
23
- your desired batch action on all of them:
24
-
25
- ```ruby
26
- ActiveAdmin.register Post do
27
- batch_action :flag do |ids|
28
- batch_action_collection.find(ids).each do |post|
29
- post.flag! :hot
30
- end
31
- redirect_to collection_path, alert: "The posts have been flagged."
32
- end
33
- end
34
- ```
35
-
36
- ### Disabling Batch Actions
37
-
38
- You can disable batch actions at the application, namespace, or resource level:
39
-
40
- ```ruby
41
- # config/initializers/active_admin.rb
42
- ActiveAdmin.setup do |config|
43
-
44
- # Application level:
45
- config.batch_actions = false
46
-
47
- # Namespace level:
48
- config.namespace :admin do |admin|
49
- admin.batch_actions = false
50
- end
51
- end
52
-
53
- # app/admin/post.rb
54
- ActiveAdmin.register Post do
55
-
56
- # Resource level:
57
- config.batch_actions = false
58
- end
59
- ```
60
-
61
- ### Modification
62
-
63
- If you want, you can override the default batch action to do whatever you want:
64
-
65
- ```ruby
66
- ActiveAdmin.register Post do
67
- batch_action :destroy do |ids|
68
- redirect_to collection_path, alert: "Didn't really delete these!"
69
- end
70
- end
71
- ```
72
-
73
- ### Removal
74
-
75
- You can remove batch actions by simply passing false as the second parameter:
76
-
77
- ```ruby
78
- ActiveAdmin.register Post do
79
- batch_action :destroy, false
80
- end
81
- ```
82
-
83
- ### Conditional display
84
-
85
- You can control whether or not the batch action is available via the `:if`
86
- option, which is executed in the view context.
87
-
88
- ```ruby
89
- ActiveAdmin.register Post do
90
- batch_action :flag, if: proc{ can? :flag, Post } do |ids|
91
- # ...
92
- end
93
- end
94
- ```
95
-
96
- ### Priority in the drop-down menu
97
-
98
- You can change the order of batch actions through the `:priority` option:
99
-
100
- ```ruby
101
- ActiveAdmin.register Post do
102
- batch_action :destroy, priority: 1 do |ids|
103
- # ...
104
- end
105
- end
106
- ```
107
-
108
- ### Confirmation prompt
109
-
110
- You can pass a custom string to prompt the user with:
111
-
112
- ```ruby
113
- ActiveAdmin.register Post do
114
- batch_action :destroy, confirm: "Are you sure??" do |ids|
115
- # ...
116
- end
117
- end
118
- ```
119
-
120
- ### Batch Action forms
121
-
122
- If you want to capture input from the user as they perform a batch action,
123
- Active Admin has just the thing for you:
124
-
125
- ```ruby
126
- batch_action :flag, form: {
127
- type: %w[Offensive Spam Other],
128
- reason: :text,
129
- notes: :textarea,
130
- hide: :checkbox,
131
- date: :datepicker
132
- } do |ids, inputs|
133
- # inputs is a hash of all the form fields you requested
134
- redirect_to collection_path, notice: [ids, inputs].to_s
135
- end
136
- ```
137
-
138
- If you pass a nested array, it will behave just like Formtastic would, with the first
139
- element being the text displayed and the second element being the value.
140
-
141
- ```ruby
142
- batch_action :doit, form: {user: [['Jake',2], ['Mary',3]]} do |ids, inputs|
143
- User.find(inputs[:user])
144
- # ...
145
- end
146
- ```
147
-
148
- When you have dynamic form inputs you can pass a proc instead:
149
-
150
- ```ruby
151
- batch_action :doit, form: -> { {user: User.pluck(:name, :id)} } do |ids, inputs|
152
- User.find(inputs[:user])
153
- # ...
154
- end
155
- ```
156
-
157
- Under the covers this is powered by the JS `ActiveAdmin.ModalDialog` which you
158
- can use yourself:
159
-
160
- ```coffee
161
- if $('body.admin_users').length
162
- $('a[data-prompt]').click ->
163
- ActiveAdmin.ModalDialog $(@).data('prompt'), comment: 'textarea',
164
- (inputs)=>
165
- $.post "/admin/users/#{$(@).data 'id'}/change_state",
166
- comment: inputs.comment, state: $(@).data('state'),
167
- success: ->
168
- window.location.reload()
169
- ```
170
-
171
- ### Translation
172
-
173
- By default, the name of the batch action will be used to lookup a label for the
174
- menu. It will lookup in `active_admin.batch_actions.labels.#{your_batch_action}`.
175
-
176
- So this:
177
-
178
- ```ruby
179
- ActiveAdmin.register Post do
180
- batch_action :publish do |ids|
181
- # ...
182
- end
183
- end
184
- ```
185
-
186
- Can be translated with:
187
-
188
- ```yaml
189
- # config/locales/en.yml
190
- en:
191
- active_admin:
192
- batch_actions:
193
- labels:
194
- publish: "Publish"
195
- ```
196
-
197
- ### Support for other index types
198
-
199
- You can easily use `batch_action` in the other index views, *Grid*, *Block*,
200
- and *Blog*; however, these will require custom styling to fit your needs.
201
-
202
- ```ruby
203
- ActiveAdmin.register Post do
204
-
205
- # By default, the "Delete" batch action is provided
206
-
207
- # Index as Grid
208
- index as: :grid do |post|
209
- resource_selection_cell post
210
- h2 auto_link post
211
- end
212
-
213
- # Index as Blog requires nothing special
214
-
215
- # Index as Block
216
- index as: :block do |post|
217
- div for: post do
218
- resource_selection_cell post
219
- end
220
- end
221
-
222
- end
223
- ```
224
-
225
- ### BTW
226
-
227
- In order to perform the batch action, the entire *Table*, *Grid*, etc. is
228
- wrapped in a form that submits the IDs of the selected rows to your batch_action.
229
-
230
- Since nested `<form>` tags in HTML often results in unexpected behavior, you
231
- may need to modify the custom behavior you've built using to prevent conflicts.
232
-
233
- Specifically, if you are using HTTP methods like `PUT` or `PATCH` with a custom
234
- form on your index page this may result in your batch action being `PUT`ed
235
- instead of `POST`ed which will create a routing error. You can get around this
236
- by either moving the nested form to another page or using a POST so it doesn't
237
- override the batch action. As well, behavior may vary by browser.
data/docs/CNAME DELETED
@@ -1 +0,0 @@
1
- activeadmin.info
data/docs/Gemfile DELETED
@@ -1,3 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- gem "github-pages"
data/docs/Gemfile.lock DELETED
@@ -1,259 +0,0 @@
1
- GEM
2
- remote: https://rubygems.org/
3
- specs:
4
- activesupport (6.0.3.3)
5
- concurrent-ruby (~> 1.0, >= 1.0.2)
6
- i18n (>= 0.7, < 2)
7
- minitest (~> 5.1)
8
- tzinfo (~> 1.1)
9
- zeitwerk (~> 2.2, >= 2.2.2)
10
- addressable (2.7.0)
11
- public_suffix (>= 2.0.2, < 5.0)
12
- coffee-script (2.4.1)
13
- coffee-script-source
14
- execjs
15
- coffee-script-source (1.11.1)
16
- colorator (1.1.0)
17
- commonmarker (0.17.13)
18
- ruby-enum (~> 0.5)
19
- concurrent-ruby (1.1.7)
20
- dnsruby (1.61.4)
21
- simpleidn (~> 0.1)
22
- em-websocket (0.5.2)
23
- eventmachine (>= 0.12.9)
24
- http_parser.rb (~> 0.6.0)
25
- ethon (0.12.0)
26
- ffi (>= 1.3.0)
27
- eventmachine (1.2.7)
28
- execjs (2.7.0)
29
- faraday (1.0.1)
30
- multipart-post (>= 1.2, < 3)
31
- ffi (1.13.1)
32
- forwardable-extended (2.6.0)
33
- gemoji (3.0.1)
34
- github-pages (209)
35
- github-pages-health-check (= 1.16.1)
36
- jekyll (= 3.9.0)
37
- jekyll-avatar (= 0.7.0)
38
- jekyll-coffeescript (= 1.1.1)
39
- jekyll-commonmark-ghpages (= 0.1.6)
40
- jekyll-default-layout (= 0.1.4)
41
- jekyll-feed (= 0.15.1)
42
- jekyll-gist (= 1.5.0)
43
- jekyll-github-metadata (= 2.13.0)
44
- jekyll-mentions (= 1.6.0)
45
- jekyll-optional-front-matter (= 0.3.2)
46
- jekyll-paginate (= 1.1.0)
47
- jekyll-readme-index (= 0.3.0)
48
- jekyll-redirect-from (= 0.16.0)
49
- jekyll-relative-links (= 0.6.1)
50
- jekyll-remote-theme (= 0.4.2)
51
- jekyll-sass-converter (= 1.5.2)
52
- jekyll-seo-tag (= 2.6.1)
53
- jekyll-sitemap (= 1.4.0)
54
- jekyll-swiss (= 1.0.0)
55
- jekyll-theme-architect (= 0.1.1)
56
- jekyll-theme-cayman (= 0.1.1)
57
- jekyll-theme-dinky (= 0.1.1)
58
- jekyll-theme-hacker (= 0.1.2)
59
- jekyll-theme-leap-day (= 0.1.1)
60
- jekyll-theme-merlot (= 0.1.1)
61
- jekyll-theme-midnight (= 0.1.1)
62
- jekyll-theme-minimal (= 0.1.1)
63
- jekyll-theme-modernist (= 0.1.1)
64
- jekyll-theme-primer (= 0.5.4)
65
- jekyll-theme-slate (= 0.1.1)
66
- jekyll-theme-tactile (= 0.1.1)
67
- jekyll-theme-time-machine (= 0.1.1)
68
- jekyll-titles-from-headings (= 0.5.3)
69
- jemoji (= 0.12.0)
70
- kramdown (= 2.3.0)
71
- kramdown-parser-gfm (= 1.1.0)
72
- liquid (= 4.0.3)
73
- mercenary (~> 0.3)
74
- minima (= 2.5.1)
75
- nokogiri (>= 1.10.4, < 2.0)
76
- rouge (= 3.23.0)
77
- terminal-table (~> 1.4)
78
- github-pages-health-check (1.16.1)
79
- addressable (~> 2.3)
80
- dnsruby (~> 1.60)
81
- octokit (~> 4.0)
82
- public_suffix (~> 3.0)
83
- typhoeus (~> 1.3)
84
- html-pipeline (2.14.0)
85
- activesupport (>= 2)
86
- nokogiri (>= 1.4)
87
- http_parser.rb (0.6.0)
88
- i18n (0.9.5)
89
- concurrent-ruby (~> 1.0)
90
- jekyll (3.9.0)
91
- addressable (~> 2.4)
92
- colorator (~> 1.0)
93
- em-websocket (~> 0.5)
94
- i18n (~> 0.7)
95
- jekyll-sass-converter (~> 1.0)
96
- jekyll-watch (~> 2.0)
97
- kramdown (>= 1.17, < 3)
98
- liquid (~> 4.0)
99
- mercenary (~> 0.3.3)
100
- pathutil (~> 0.9)
101
- rouge (>= 1.7, < 4)
102
- safe_yaml (~> 1.0)
103
- jekyll-avatar (0.7.0)
104
- jekyll (>= 3.0, < 5.0)
105
- jekyll-coffeescript (1.1.1)
106
- coffee-script (~> 2.2)
107
- coffee-script-source (~> 1.11.1)
108
- jekyll-commonmark (1.3.1)
109
- commonmarker (~> 0.14)
110
- jekyll (>= 3.7, < 5.0)
111
- jekyll-commonmark-ghpages (0.1.6)
112
- commonmarker (~> 0.17.6)
113
- jekyll-commonmark (~> 1.2)
114
- rouge (>= 2.0, < 4.0)
115
- jekyll-default-layout (0.1.4)
116
- jekyll (~> 3.0)
117
- jekyll-feed (0.15.1)
118
- jekyll (>= 3.7, < 5.0)
119
- jekyll-gist (1.5.0)
120
- octokit (~> 4.2)
121
- jekyll-github-metadata (2.13.0)
122
- jekyll (>= 3.4, < 5.0)
123
- octokit (~> 4.0, != 4.4.0)
124
- jekyll-mentions (1.6.0)
125
- html-pipeline (~> 2.3)
126
- jekyll (>= 3.7, < 5.0)
127
- jekyll-optional-front-matter (0.3.2)
128
- jekyll (>= 3.0, < 5.0)
129
- jekyll-paginate (1.1.0)
130
- jekyll-readme-index (0.3.0)
131
- jekyll (>= 3.0, < 5.0)
132
- jekyll-redirect-from (0.16.0)
133
- jekyll (>= 3.3, < 5.0)
134
- jekyll-relative-links (0.6.1)
135
- jekyll (>= 3.3, < 5.0)
136
- jekyll-remote-theme (0.4.2)
137
- addressable (~> 2.0)
138
- jekyll (>= 3.5, < 5.0)
139
- jekyll-sass-converter (>= 1.0, <= 3.0.0, != 2.0.0)
140
- rubyzip (>= 1.3.0, < 3.0)
141
- jekyll-sass-converter (1.5.2)
142
- sass (~> 3.4)
143
- jekyll-seo-tag (2.6.1)
144
- jekyll (>= 3.3, < 5.0)
145
- jekyll-sitemap (1.4.0)
146
- jekyll (>= 3.7, < 5.0)
147
- jekyll-swiss (1.0.0)
148
- jekyll-theme-architect (0.1.1)
149
- jekyll (~> 3.5)
150
- jekyll-seo-tag (~> 2.0)
151
- jekyll-theme-cayman (0.1.1)
152
- jekyll (~> 3.5)
153
- jekyll-seo-tag (~> 2.0)
154
- jekyll-theme-dinky (0.1.1)
155
- jekyll (~> 3.5)
156
- jekyll-seo-tag (~> 2.0)
157
- jekyll-theme-hacker (0.1.2)
158
- jekyll (> 3.5, < 5.0)
159
- jekyll-seo-tag (~> 2.0)
160
- jekyll-theme-leap-day (0.1.1)
161
- jekyll (~> 3.5)
162
- jekyll-seo-tag (~> 2.0)
163
- jekyll-theme-merlot (0.1.1)
164
- jekyll (~> 3.5)
165
- jekyll-seo-tag (~> 2.0)
166
- jekyll-theme-midnight (0.1.1)
167
- jekyll (~> 3.5)
168
- jekyll-seo-tag (~> 2.0)
169
- jekyll-theme-minimal (0.1.1)
170
- jekyll (~> 3.5)
171
- jekyll-seo-tag (~> 2.0)
172
- jekyll-theme-modernist (0.1.1)
173
- jekyll (~> 3.5)
174
- jekyll-seo-tag (~> 2.0)
175
- jekyll-theme-primer (0.5.4)
176
- jekyll (> 3.5, < 5.0)
177
- jekyll-github-metadata (~> 2.9)
178
- jekyll-seo-tag (~> 2.0)
179
- jekyll-theme-slate (0.1.1)
180
- jekyll (~> 3.5)
181
- jekyll-seo-tag (~> 2.0)
182
- jekyll-theme-tactile (0.1.1)
183
- jekyll (~> 3.5)
184
- jekyll-seo-tag (~> 2.0)
185
- jekyll-theme-time-machine (0.1.1)
186
- jekyll (~> 3.5)
187
- jekyll-seo-tag (~> 2.0)
188
- jekyll-titles-from-headings (0.5.3)
189
- jekyll (>= 3.3, < 5.0)
190
- jekyll-watch (2.2.1)
191
- listen (~> 3.0)
192
- jemoji (0.12.0)
193
- gemoji (~> 3.0)
194
- html-pipeline (~> 2.2)
195
- jekyll (>= 3.0, < 5.0)
196
- kramdown (2.3.0)
197
- rexml
198
- kramdown-parser-gfm (1.1.0)
199
- kramdown (~> 2.0)
200
- liquid (4.0.3)
201
- listen (3.2.1)
202
- rb-fsevent (~> 0.10, >= 0.10.3)
203
- rb-inotify (~> 0.9, >= 0.9.10)
204
- mercenary (0.3.6)
205
- mini_portile2 (2.4.0)
206
- minima (2.5.1)
207
- jekyll (>= 3.5, < 5.0)
208
- jekyll-feed (~> 0.9)
209
- jekyll-seo-tag (~> 2.1)
210
- minitest (5.14.2)
211
- multipart-post (2.1.1)
212
- nokogiri (1.10.10)
213
- mini_portile2 (~> 2.4.0)
214
- octokit (4.18.0)
215
- faraday (>= 0.9)
216
- sawyer (~> 0.8.0, >= 0.5.3)
217
- pathutil (0.16.2)
218
- forwardable-extended (~> 2.6)
219
- public_suffix (3.1.1)
220
- rb-fsevent (0.10.4)
221
- rb-inotify (0.10.1)
222
- ffi (~> 1.0)
223
- rexml (3.2.4)
224
- rouge (3.23.0)
225
- ruby-enum (0.8.0)
226
- i18n
227
- rubyzip (2.3.0)
228
- safe_yaml (1.0.5)
229
- sass (3.7.4)
230
- sass-listen (~> 4.0.0)
231
- sass-listen (4.0.0)
232
- rb-fsevent (~> 0.9, >= 0.9.4)
233
- rb-inotify (~> 0.9, >= 0.9.7)
234
- sawyer (0.8.2)
235
- addressable (>= 2.3.5)
236
- faraday (> 0.8, < 2.0)
237
- simpleidn (0.1.1)
238
- unf (~> 0.1.4)
239
- terminal-table (1.8.0)
240
- unicode-display_width (~> 1.1, >= 1.1.1)
241
- thread_safe (0.3.6)
242
- typhoeus (1.4.0)
243
- ethon (>= 0.9.0)
244
- tzinfo (1.2.7)
245
- thread_safe (~> 0.1)
246
- unf (0.1.4)
247
- unf_ext
248
- unf_ext (0.0.7.7)
249
- unicode-display_width (1.7.0)
250
- zeitwerk (2.4.0)
251
-
252
- PLATFORMS
253
- ruby
254
-
255
- DEPENDENCIES
256
- github-pages
257
-
258
- BUNDLED WITH
259
- 2.0.2
data/docs/README.md DELETED
@@ -1,24 +0,0 @@
1
- # ActiveAdmin Documentation
2
-
3
- ## Content
4
-
5
- - [Installation](0-installation.md)
6
- - [General Configuration](1-general-configuration.md)
7
- - [Resource Customization](2-resource-customization.md)
8
- - [Index Pages](3-index-pages.md)
9
- - [Custom Index](3-index-pages/custom-index.md)
10
- - [Index as Table](3-index-pages/index-as-table.md)
11
- - [Index as Grid](3-index-pages/index-as-grid.md)
12
- - [Index as Blocks](3-index-pages/index-as-block.md)
13
- - [Index as Blog](3-index-pages/index-as-blog.md)
14
- - [Csv Format](4-csv-format.md)
15
- - [Forms](5-forms.md)
16
- - [Show Pages](6-show-pages.md)
17
- - [Sidebars](7-sidebars.md)
18
- - [Custom Actions](8-custom-actions.md)
19
- - [Batch Actions](9-batch-actions.md)
20
- - [Custom Pages](10-custom-pages.md)
21
- - [Decorators](11-decorators.md)
22
- - [Arbre Components](12-arbre-components.md)
23
- - [Authorization Adapter](13-authorization-adapter.md)
24
- - [Gotchas](14-gotchas.md)
data/docs/_config.yml DELETED
@@ -1,4 +0,0 @@
1
- plugins:
2
- - jekyll-default-layout
3
- - jekyll-redirect-from
4
- - jekyll-relative-links
@@ -1,8 +0,0 @@
1
- <p id="footer">
2
- <div class="left">
3
- Copyright 2011 <a href="http://gregbell.ca/">Greg Bell</a> and <a href="http://www.versapay.com/">VersaPay</a>
4
- </div>
5
- <div class="right">
6
- <a href="http://twitter.com/share" class="twitter-share-button">Tweet</a></p>
7
- </div>
8
- </p>
@@ -1,16 +0,0 @@
1
- <script type="text/javascript">
2
-
3
- var _gaq = _gaq || [];
4
- _gaq.push(['_setAccount', 'UA-23306458-1']);
5
- _gaq.push(['_trackPageview']);
6
-
7
- (function () {
8
- var ga = document.createElement('script');
9
- ga.type = 'text/javascript';
10
- ga.async = true;
11
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
12
- var s = document.getElementsByTagName('script')[0];
13
- s.parentNode.insertBefore(ga, s);
14
- })();
15
-
16
- </script>
@@ -1,7 +0,0 @@
1
- <head>
2
- <title>Active Admin | The administration framework for Ruby on Rails</title>
3
- <link href='//fonts.googleapis.com/css?family=Yanone+Kaffeesatz:extralight,light,regular,bold' rel='stylesheet' type='text/css'>
4
- <link href='//fonts.googleapis.com/css?family=Droid+Sans+Mono' rel='stylesheet' type='text/css'>
5
- <link href="{{ site.baseurl }}/stylesheets/main.css" media="screen" rel="stylesheet" type="text/css" />
6
- <script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
7
- </head>
@@ -1,98 +0,0 @@
1
- <ol class='level-1'>
2
- <li><a href='{{ site.baseurl }}/0-installation.html'>Installation</a></li>
3
- <ol class='level-2'>
4
- <li><a href='{{ site.baseurl }}/0-installation.html#setting-up-active-admin'>Setting up Active Admin</a></li>
5
- <li><a href='{{ site.baseurl }}/0-installation.html#upgrading'>Upgrading</a></li>
6
- <li><a href='{{ site.baseurl }}/0-installation.html#gem-compatibility'>Gem Compatibility</a></li>
7
- </ol>
8
- <li><a href='{{ site.baseurl }}/1-general-configuration.html'>General Configuration</a></li>
9
- <ol class='level-2'>
10
- <li><a href='{{ site.baseurl }}/1-general-configuration.html#authentication'>Authentication</a></li>
11
- <li><a href='{{ site.baseurl }}/1-general-configuration.html#site-title-options'>Site Title Options</a></li>
12
- <li><a href='{{ site.baseurl }}/1-general-configuration.html#internationalization-i18n'>Internationalization (I18n)</a></li>
13
- <li><a href='{{ site.baseurl }}/1-general-configuration.html#namespaces'>Namespaces</a></li>
14
- <li><a href='{{ site.baseurl }}/1-general-configuration.html#load-paths'>Load paths</a></li>
15
- <li><a href='{{ site.baseurl }}/1-general-configuration.html#comments'>Comments</a></li>
16
- <li><a href='{{ site.baseurl }}/1-general-configuration.html#utility-navigation'>Utility Navigation</a></li>
17
- </ol>
18
- <li><a href='{{ site.baseurl }}/2-resource-customization.html'>Working with Resources</a></li>
19
- <ol class='level-2'>
20
- <li><a href='{{ site.baseurl }}/2-resource-customization.html#rename-the-resource'>Rename the Resource</a></li>
21
- <li><a href='{{ site.baseurl }}/2-resource-customization.html#customize-the-namespace'>Customize the Namespace</a></li>
22
- <li><a href='{{ site.baseurl }}/2-resource-customization.html#customize-the-menu'>Customize the Menu</a></li>
23
- <li><a href='{{ site.baseurl }}/2-resource-customization.html#scoping-the-queries'>Scoping the queries</a></li>
24
- <li><a href='{{ site.baseurl }}/2-resource-customization.html#customizing-resource-retrieval'>Customizing resource
25
- retrieval</a></li>
26
- <li><a href='{{ site.baseurl }}/2-resource-customization.html#belongs-to'>Belongs To</a></li>
27
- </ol>
28
- <li><a href='{{ site.baseurl }}/3-index-pages.html'>Customizing the Index Page</a></li>
29
- <ol class='level-2'>
30
- <li><a href='{{ site.baseurl }}/3-index-pages/custom-index.html'>Custom Index</a></li>
31
- <li><a href='{{ site.baseurl }}/3-index-pages/index-as-block.html'>Index as a Block</a></li>
32
- <li><a href='{{ site.baseurl }}/3-index-pages/index-as-blog.html'>Index as Blog</a></li>
33
- <li><a href='{{ site.baseurl }}/3-index-pages/index-as-grid.html'>Index as a Grid</a></li>
34
- <li><a href='{{ site.baseurl }}/3-index-pages/index-as-table.html'>Index as a Table</a></li>
35
- </ol>
36
- <li><a href='{{ site.baseurl }}/4-csv-format.html'>Customizing the CSV format</a></li>
37
- <li><a href='{{ site.baseurl }}/5-forms.html'>Customizing the Form</a></li>
38
- <ol class='level-2'>
39
- <li><a href='{{ site.baseurl }}/5-forms.html#default'>Default</a></li>
40
- <li><a href='{{ site.baseurl }}/5-forms.html#partials'>Partials</a></li>
41
- <li><a href='{{ site.baseurl }}/5-forms.html#nested-resources'>Nested Resources</a></li>
42
- <li><a href='{{ site.baseurl }}/5-forms.html#datepicker'>Datepicker</a></li>
43
- <li><a href='{{ site.baseurl }}/5-forms.html#displaying-errors'>Displaying Errors</a></li>
44
- </ol>
45
- <li><a href='{{ site.baseurl }}/6-show-pages.html'>Customize the Show Page</a></li>
46
- <li><a href='{{ site.baseurl }}/7-sidebars.html'>Sidebar Sections</a></li>
47
- <li><a href='{{ site.baseurl }}/8-custom-actions.html'>Custom Controller Actions</a></li>
48
- <ol class='level-2'>
49
- <li><a href='{{ site.baseurl }}/8-custom-actions.html#collection-actions'>Collection Actions</a></li>
50
- <li><a href='{{ site.baseurl }}/8-custom-actions.html#member-actions'>Member Actions</a></li>
51
- <li><a href='{{ site.baseurl }}/8-custom-actions.html#http-verbs'>HTTP Verbs</a></li>
52
- <li><a href='{{ site.baseurl }}/8-custom-actions.html#rendering'>Rendering</a></li>
53
- <li><a href='{{ site.baseurl }}/8-custom-actions.html#action-items'>Action Items</a></li>
54
- <li><a href='{{ site.baseurl }}/8-custom-actions.html#modifying-the-controller'>Modifying the Controller</a></li>
55
- </ol>
56
- <li><a href='{{ site.baseurl }}/9-batch-actions.html'>Index Batch Actions</a></li>
57
- <ol class='level-2'>
58
- <li><a href='{{ site.baseurl }}/9-batch-actions.html#provided-batch-action'>Provided Batch Action</a></li>
59
- <li><a href='{{ site.baseurl }}/9-batch-actions.html#creating-your-own'>Creating Your Own</a></li>
60
- </ol>
61
- <li><a href='{{ site.baseurl }}/10-custom-pages.html'>Custom Pages</a></li>
62
- <ol class='level-2'>
63
- <li><a href='{{ site.baseurl }}/10-custom-pages.html#create-a-new-page'>Create a new Page</a></li>
64
- <li><a href='{{ site.baseurl }}/10-custom-pages.html#customize-the-menu'>Customize the Menu</a></li>
65
- <li><a href='{{ site.baseurl }}/10-custom-pages.html#add-a-sidebar'>Add a Sidebar</a></li>
66
- <li><a href='{{ site.baseurl }}/10-custom-pages.html#add-an-action-item'>Add an Action Item</a></li>
67
- <li><a href='{{ site.baseurl }}/10-custom-pages.html#add-a-page-action'>Add a Page Action</a></li>
68
- </ol>
69
- <li><a href='{{ site.baseurl }}/11-decorators.html'>Decorators</a></li>
70
- <ol class='level-2'>
71
- <li><a href='{{ site.baseurl }}/11-decorators.html#example-usage'>Example Usage</a></li>
72
- <li><a href='{{ site.baseurl }}/11-decorators.html#forms'>Forms</a></li>
73
- </ol>
74
- <li><a href='{{ site.baseurl }}/12-arbre-components.html'>Arbre Components</a></li>
75
- <ol class='level-2'>
76
- <li><a href='{{ site.baseurl }}/12-arbre-components.html#text-node'>Text Node</a></li>
77
- <li><a href='{{ site.baseurl }}/12-arbre-components.html#panels'>Panels</a></li>
78
- <li><a href='{{ site.baseurl }}/12-arbre-components.html#columns'>Columns</a></li>
79
- <li><a href='{{ site.baseurl }}/12-arbre-components.html#table-for'>Table For</a></li>
80
- <li><a href='{{ site.baseurl }}/12-arbre-components.html#status-tag'>Status tag</a></li>
81
- <li><a href='{{ site.baseurl }}/12-arbre-components.html#tabs'>Tabs</a></li>
82
- </ol>
83
- <li><a href='{{ site.baseurl }}/13-authorization-adapter.html'>Authorization Adapter</a></li>
84
- <ol class='level-2'>
85
- <li><a href='{{ site.baseurl }}/13-authorization-adapter.html#setting-up-your-own-authorizationadapter'>Setting up your own
86
- AuthorizationAdapter</a></li>
87
- <li><a href='{{ site.baseurl }}/13-authorization-adapter.html#getting-access-to-the-current-user'>Getting Access to the
88
- Current User</a></li>
89
- <li><a href='{{ site.baseurl }}/13-authorization-adapter.html#scoping-collections-in-authorization-adapters'>Scoping
90
- Collections in Authorization Adapters</a></li>
91
- <li><a href='{{ site.baseurl }}/13-authorization-adapter.html#managing-access-to-pages'>Managing Access to Pages</a></li>
92
- <li><a href='{{ site.baseurl }}/13-authorization-adapter.html#action-types'>Action Types</a></li>
93
- <li><a href='{{ site.baseurl }}/13-authorization-adapter.html#checking-for-authorization-in-controllers-and-views'>Checking
94
- for Authorization in Controllers and Views</a></li>
95
- <li><a href='{{ site.baseurl }}/13-authorization-adapter.html#using-the-cancan-adapter'>Using the CanCan Adapter</a></li>
96
- <li><a href='{{ site.baseurl }}/13-authorization-adapter.html#using-the-pundit-adapter'>Using the Pundit Adapter</a></li>
97
- </ol>
98
- </ol>
@@ -1,17 +0,0 @@
1
- <div id="header">
2
- <h1><a href="{{ site.baseurl }}/index.html"><span>Active Admin</span></a></h1>
3
-
4
- <div id="nav">
5
- <a href="{{ site.baseurl }}/documentation.html">Documentation</a>
6
- <a href="http://demo.activeadmin.info/admin">Try It Now!</a>
7
- <a href="http://github.com/activeadmin/activeadmin">Get the Code</a>
8
- </div>
9
-
10
- <div id="tidelift">
11
- <a href="https://tidelift.com/subscription/pkg/rubygems-activeadmin?utm_source=rubygems-activeadmin&utm_medium=referral&utm_campaign=enterprise" target="_blank">
12
- <span class="cta">
13
- Active Admin for enterprise available via Tidelift
14
- </span>
15
- </a>
16
- </div>
17
- </div>