Sha256: 700c0ece54e7d96fae714e936b3329f33ee923e4d30fad90ed71fb6ca2f940a0

Contents?: true

Size: 820 Bytes

Versions: 4

Compression:

Stored size: 820 Bytes

Contents

# ## Index
#
# This view is the template for the index page.
#
# ## Local variables:
#
# - `page`:
#   An instance of [Administrate::Page::Collection][1].
#   Contains helper methods to help display a table,
#   and knows which attributes should be displayed in the resource's table.
# - `resources`:
#   An instance of `ActiveRecord::Relation` containing the resources
#   that match the user's search criteria.
#   By default, these resources are passed to the table partial to be displayed.
# - `search_term`:
#   A string containing the term the user has searched for, if any.
#
# [1]: http://www.rubydoc.info/gems/administrate/Administrate/Page/Collection

json.resources resources do |resource|
  json.id resource.id
  json.ressouce resource
  json.dashboard_display_name @dashboard.display_resource(resource)
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
viniBaxter-spa-belongs_to_search-4.0.0 app/views/administrate/application/index.json.jbuilder
viniBaxter-spa-belongs_to_search-3.0.0 app/views/administrate/application/index.json.jbuilder
viniBaxter-spa-belongs_to_search-2.1.0 app/views/administrate/application/index.json.jbuilder
viniBaxter-spa-belongs_to_search-2.0.0 app/views/administrate/application/index.json.jbuilder