* VRFS-924 haml added
This commit is contained in:
parent
dc462d804d
commit
184ac3e834
|
|
@ -0,0 +1,19 @@
|
|||
ActiveAdmin.register JamRuby::Recording, :as => 'Recording' do
|
||||
|
||||
menu :label => 'Recordings', :parent => 'Recordings'
|
||||
|
||||
config.sort_order = 'DESC updated_at'
|
||||
config.batch_actions = false
|
||||
# config.clear_action_items!
|
||||
config.filters = false
|
||||
|
||||
#form :partial => 'form'
|
||||
|
||||
collection_action :autocomplete_user_email, :method => :get
|
||||
|
||||
controller do
|
||||
autocomplete :user, :email
|
||||
end
|
||||
|
||||
|
||||
end
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
|
||||
<%= f.inputs do %>
|
||||
<%= f.input :user, :as => :autocomplete, :url => autocomplete_user_email_admin_users_path %>
|
||||
<%= f.input :instrument, :collection => Instrument.all %>
|
||||
<% end %>
|
||||
|
|
@ -51,6 +51,7 @@ gem 'aws-sdk', '1.29.1'
|
|||
gem 'aasm', '3.0.16'
|
||||
gem 'carrierwave'
|
||||
gem 'fog'
|
||||
gem 'haml-rails'
|
||||
gem 'unf' #optional fog dependency
|
||||
gem 'devise', '>= 1.1.2'
|
||||
#gem 'thin' # the presence of this gem on mac seems to prevent normal startup of rails.
|
||||
|
|
|
|||
Loading…
Reference in New Issue