Displaying 1 result from an estimated 1 matches for "enter2".
Did you mean:
enters
2006 Jun 01
0
Possible RJS Implementation?
...firm => "Are you sure you want to remove
\"#{song.title}\" from the contest?" }%>
</div>
</div>
<% end %>
</div>
The two actions in the methods that handle the corresponding actions look
like this:
def contest_enter
#enter2: finish submission of song to contest
@contest = Contest.find(params[:id])
@song = Song.find(params[:song_id])
@member = session[:member_id]
ContestEntry.find_or_create_by_song_id_and_contest_id(@song.id,@
contest.id)
@elgibile_songs = ContestEntry.elgibile_songs(@member.id, @contest...