initial working version of attachments.
[kwestie.git] / app / views / issues / show.rhtml
bloba9434394ac0f87e33889da1f8198dbff559340a3
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>
9     <% end %>
10     </div>
11   <% end %>
13   <h3 class="comments">Comments</h3>
14   <div id="comments">
15     <% for c in @issue.comments %>
16       <%= render :partial => '/comments/show', :locals => { :comment => c } %>
17     <% end %>
18   </div>
19   <% if logged_in? %>
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>
25     <% end %>
26     </div>
27   <% else %>
28     <p>You must be <%= link_to "logged in", :action => "comment", :id => @issue %> to comment.</p>
29   <% end %>
30 </div>
32 <%- content_for :title do -%>
33 <%= @issue.title %>
34 <%- end -%>