aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/user/wall.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/user/wall.html.erb')
-rw-r--r--app/views/user/wall.html.erb16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/views/user/wall.html.erb b/app/views/user/wall.html.erb
new file mode 100644
index 000000000..190cc0a6d
--- /dev/null
+++ b/app/views/user/wall.html.erb
@@ -0,0 +1,16 @@
+<% @title = h(@display_user.name) + _(" - wall") %>
+<% if @is_you %>
+<div class="medium_column">
+ <p><%= _('You can change the requests and users you are following on <a href="{{profile_url}}">your profile page</a>.', :profile_url => show_user_profile_path) %>
+ <%= render :partial => 'change_receive_email' %>
+</div>
+<% end %>
+<div id="user_profile_search">
+ <% if !@feed_results.nil? %>
+ <% for result in @feed_results %>
+ <%= render :partial => 'request/wall_listing', :locals => { :event => result, :info_request => result.info_request } %>
+ <% end %>
+ <% end %>
+
+
+</div>