52 lines
1.7 KiB
Text
52 lines
1.7 KiB
Text
%h3
|
|
Issue ##{@issue.id}
|
|
%small
|
|
created at
|
|
= @issue.created_at.stamp("Aug 21, 2011")
|
|
|
|
%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
|
|
= link_to 'Close', project_issue_path(@project, @issue, :issue => {:closed => true }, :status_only => true), :method => :put, :class => "btn", :title => "Close Issue"
|
|
- if can?(current_user, :admin_project, @project) || @issue.author == current_user
|
|
= link_to edit_project_issue_path(@project, @issue), :class => "btn" do
|
|
Edit
|
|
|
|
%br
|
|
- if @issue.upvotes > 0
|
|
.upvotes#upvotes= "+#{pluralize @issue.upvotes, 'upvote'}"
|
|
|
|
.back_link
|
|
= link_to project_issues_path(@project) do
|
|
← To issues list
|
|
|
|
.issue_box
|
|
.merge_request_status_holder
|
|
%h5
|
|
- if @issue.closed
|
|
.alert-message.error.status_info Closed
|
|
- else
|
|
.alert-message.success.status_info Open
|
|
= @issue.title
|
|
|
|
%hr
|
|
%div
|
|
%div.row
|
|
%div.issue_meta.span13
|
|
%cite.cgray Created by
|
|
= image_tag gravatar_icon(@issue.author_email), :width => 16, :class => "lil_av"
|
|
%strong.author= link_to_issue_author(@issue)
|
|
|
|
%cite.cgray and currently assigned to
|
|
= image_tag gravatar_icon(@issue.assignee_email), :width => 16, :class => "lil_av"
|
|
%strong.author= link_to_issue_assignee(@issue)
|
|
|
|
%div
|
|
- if @issue.description.present?
|
|
%hr
|
|
= markdown @issue.description
|
|
|
|
|
|
.issue_notes#notes= render "notes/notes", :tid => @issue.id, :tt => "issue"
|