Fix bug in track list, also send accept/reject mails

This commit is contained in:
Matt Barringer 2013-01-17 13:56:05 +01:00
parent f10d5e4c0e
commit caa0dec6c4
7 changed files with 70 additions and 37 deletions

View file

@ -17,7 +17,7 @@ class Admin::EventsController < ApplicationController
def show
@event = @conference.events.find(params[:id])
@tracks = Track.all
@tracks = @conference.tracks
@comments = @event.root_comments
@comment_count = @event.comment_threads.count
end