1 <div class="issue-comments">
3 <%= render :partial => 'show' %>
5 <% if ! @issue.attachments.empty? %>
6 <div class="issue-attachments">
7 <% for attachment in @issue.attachments %>
8 <p><%= attachment.filename %></p>
13 <h3 class="comments">Comments</h3>
15 <% for c in @issue.comments %>
16 <%= render :partial => '/comments/show', :locals => { :comment => c } %>
20 <div class="comment_entry">
21 <% form_tag :controller => :comments, :action => :create do -%>
22 <%= hidden_field :comment, :issue_id, :value => @issue.id %>
23 <%= render :partial => '/comments/form' %>
24 <div><%= submit_tag "Add Comment" %></div>
28 <p>You must be <%= link_to "logged in", :action => "comment", :id => @issue %> to comment.</p>
32 <%- content_for :title do -%>