diff options
Diffstat (limited to 'app/views/request/show.rhtml')
-rw-r--r-- | app/views/request/show.rhtml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/app/views/request/show.rhtml b/app/views/request/show.rhtml index 7c6a020a8..6e9cad82f 100644 --- a/app/views/request/show.rhtml +++ b/app/views/request/show.rhtml @@ -66,7 +66,17 @@ </div> <div id="request_sidebar"> - <h2>Follow this request</h2> + <% if @info_request.track_things.size > 0 %> + <h2>People following this request</h2> + <ul> + <% for track_thing in @info_request.track_things %> + <li><%=user_link(track_thing.tracking_user)%></li> + <% end %> + </ul> + <% else %> + <h2>Follow this request</h2> + <% end %> + <p> <% if @existing_track %> You are already tracking this request. |