diff options
Diffstat (limited to 'app/views/user/river.html.erb')
-rw-r--r-- | app/views/user/river.html.erb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/views/user/river.html.erb b/app/views/user/river.html.erb new file mode 100644 index 000000000..9618e0aa8 --- /dev/null +++ b/app/views/user/river.html.erb @@ -0,0 +1,12 @@ +<% @title = 'Recent Events' %> + +<div class="single_user"> + <h1><%=@title%></h1> + + <% for result in @results %> + <%= render :partial => 'request/request_listing_via_event', :locals => { + :event => result[:model], :info_request => result[:model].info_request } %> + <% end %> + +</div> + |