Skip to content

Instantly share code, notes, and snippets.

View dnch's full-sized avatar

Dan Cheail dnch

  • melbourne, au
View GitHub Profile
def donate
@heroPage = HeroPage.search_url(params[:url], DateTime.now)
unless @heroPage
redirect_to :action=>"the_unknown_hero"
return
else
@donation = Donation.new()
# if @donation.save? then session[:mydonation_id] = @donation.id end
@dnch
dnch / gist:5241
Created August 13, 2008 15:21 — forked from nfelsen/gist:5197
<% @sections.each do |section| %>
<h2><%= section_name(section) %></h2>
<% section.topics.each do |topic| %>
<%= topic.name %><br>
<% end %>
<% end %>