2012-01-29 11:04:09 +01:00
|
|
|
%h3
|
|
|
|
Issue ##{@issue.id}
|
2012-01-29 22:59:12 +01:00
|
|
|
%small
|
|
|
|
created at
|
|
|
|
= @issue.created_at.stamp("Aug 21, 2011")
|
2012-01-29 11:04:09 +01:00
|
|
|
|
|
|
|
%span.right
|
|
|
|
- if can?(current_user, :admin_project, @project) || @issue.author == current_user
|
|
|
|
- if @issue.closed
|
|
|
|
= link_to 'Reopen', project_issue_path(@project, @issue, :issue => {:closed => false }, :status_only => true), :method => :put, :class => "btn"
|
|
|
|
- else
|
2012-02-25 12:03:44 +01:00
|
|
|
= link_to 'Close', project_issue_path(@project, @issue, :issue => {:closed => true }, :status_only => true), :method => :put, :class => "btn", :title => "Close Issue"
|
2011-12-13 22:59:35 +01:00
|
|
|
- if can?(current_user, :admin_project, @project) || @issue.author == current_user
|
2012-01-29 11:04:09 +01:00
|
|
|
= link_to edit_project_issue_path(@project, @issue), :class => "btn small" do
|
|
|
|
Edit
|
|
|
|
|
2012-02-18 13:12:48 +01:00
|
|
|
.back_link
|
|
|
|
= link_to project_issues_path(@project) do
|
|
|
|
← To issues list
|
|
|
|
|
|
|
|
|
2012-01-29 11:04:09 +01:00
|
|
|
%hr
|
|
|
|
- if @issue.closed
|
|
|
|
.alert-message.error Closed
|
|
|
|
- else
|
|
|
|
.alert-message.success Open
|
|
|
|
|
|
|
|
|
|
|
|
%div.well
|
|
|
|
%div
|
2012-01-29 22:59:12 +01:00
|
|
|
%cite.cgray Created by
|
|
|
|
= image_tag gravatar_icon(@issue.author_email), :width => 16, :class => "lil_av"
|
2012-02-05 11:58:02 +01:00
|
|
|
%strong.author= link_to_issue_author(@issue)
|
2012-01-29 22:59:12 +01:00
|
|
|
|
|
|
|
%cite.cgray and currently assigned to
|
|
|
|
= image_tag gravatar_icon(@issue.assignee_email), :width => 16, :class => "lil_av"
|
2012-02-05 11:58:02 +01:00
|
|
|
%strong.author= link_to_issue_assignee(@issue)
|
2012-01-29 22:59:12 +01:00
|
|
|
|
|
|
|
%hr
|
2012-01-29 11:04:09 +01:00
|
|
|
|
|
|
|
%div= simple_format @issue.title
|
|
|
|
|
|
|
|
|
2012-02-24 08:16:06 +01:00
|
|
|
.issue_notes= render "notes/notes", :tid => @issue.id, :tt => "issue"
|