Moved OPEN and removed back link (you can easily click on issues to get to the same spot)
This commit is contained in:
parent
3263f2e1ab
commit
7712d81f9b
1 changed files with 5 additions and 9 deletions
|
@ -17,18 +17,9 @@
|
||||||
%br
|
%br
|
||||||
- if @issue.upvotes > 0
|
- if @issue.upvotes > 0
|
||||||
.upvotes#upvotes= "+#{pluralize @issue.upvotes, 'upvote'}"
|
.upvotes#upvotes= "+#{pluralize @issue.upvotes, 'upvote'}"
|
||||||
|
|
||||||
|
|
||||||
.back_link
|
|
||||||
= link_to project_issues_path(@project) do
|
|
||||||
← To issues list
|
|
||||||
|
|
||||||
|
|
||||||
%hr
|
%hr
|
||||||
- if @issue.closed
|
|
||||||
.alert-message.error Closed
|
|
||||||
- else
|
|
||||||
.alert-message.success Open
|
|
||||||
|
|
||||||
|
|
||||||
%div.well
|
%div.well
|
||||||
|
@ -40,6 +31,11 @@
|
||||||
%cite.cgray and currently assigned to
|
%cite.cgray and currently assigned to
|
||||||
= image_tag gravatar_icon(@issue.assignee_email), :width => 16, :class => "lil_av"
|
= image_tag gravatar_icon(@issue.assignee_email), :width => 16, :class => "lil_av"
|
||||||
%strong.author= link_to_issue_assignee(@issue)
|
%strong.author= link_to_issue_assignee(@issue)
|
||||||
|
|
||||||
|
- if @issue.closed
|
||||||
|
.alert-message.error Closed
|
||||||
|
- else
|
||||||
|
.alert-message.success Open
|
||||||
|
|
||||||
%hr
|
%hr
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue