suck it! one down, lots to go.
[kwestie.git] / app / views / users / show.rhtml
blob7df5cc5fc2150de3c7e2eaaaa9447555aa8f0163
1 <%= render :partial => 'show' %>
3 <h3>Recent Issues You Created</h3>
5 <ul class="issues">
6 <% for @issue in @user.recent_issues %>
8   <li class="issue"><%= link_to @issue.title, issue_path(@issue) %></li>
10 <% end %>
11 </ul>
13 <h3>Recent Comments You Made</h3>
15 <ul class="comments">
16 <% for @comment in @user.recent_comments %>
18   <li class="issue"><%= link_to @comment.issue.title, issue_path(@comment.issue) %><br/><%= @comment.description %></li>
20 <% end %>
21 </ul>
23 <%- content_for :title do -%>
24 <%= @user.login %> : <%= @user.display_name %>
25 <%- end -%>