* VRFS-924 haml added

This commit is contained in:
Seth Call 2014-02-11 15:52:18 +00:00
parent dc462d804d
commit 184ac3e834
5 changed files with 25 additions and 0 deletions

View File

@ -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

View File

@ -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 %>

View File

@ -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.