Guest User

Untitled

a guest
Nov 21st, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. = link_to new_admin_attendance_path(event_id: event.id, date: params[:date]),
  2. remote: true, class: 'btn btn-success' do %span.glyphicon.glyphicon-plus
  3.  
  4. def new
  5. @attendance = Attendance.new
  6.  
  7. if params[:event_id]
  8. @attendance.event_id = params[:event_id]
  9. end
  10.  
  11. respond_to do |format|
  12. format.js
  13. end
  14. end
Add Comment
Please, Sign In to add comment