diff options
Diffstat (limited to 'app/views/issues/_show.html.haml')
-rw-r--r-- | app/views/issues/_show.html.haml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/views/issues/_show.html.haml b/app/views/issues/_show.html.haml index b2cf54d10d4..a4f8d338ba4 100644 --- a/app/views/issues/_show.html.haml +++ b/app/views/issues/_show.html.haml @@ -7,7 +7,10 @@ = link_to 'Reopen', project_issue_path(issue.project, issue, :issue => {:closed => false }, :status_only => true), :method => :put, :class => "btn small padded", :remote => true - else = link_to 'Resolve', project_issue_path(issue.project, issue, :issue => {:closed => true }, :status_only => true), :method => :put, :class => "success btn small padded", :remote => true - = link_to 'Edit', edit_project_issue_path(issue.project, issue), :class => "btn small edit-issue-link", :remote => true + = link_to edit_project_issue_path(issue.project, issue), :class => "btn small edit-issue-link", :remote => true do + %i.icon-edit + Edit + = image_tag gravatar_icon(issue.assignee_email), :class => "avatar" %span.update-author assigned to |