Commit 1b96985025f8aa2044ad489aef96886030337831
1 parent
7712d81f
Exists in
master
and in
4 other branches
Re-added back to issues list, but moved it above title. Added css to move issue meta data around.
Showing
1 changed file
with
17 additions
and
11 deletions
Show diff stats
app/views/issues/show.html.haml
| 1 | +.back_link | |
| 2 | += link_to project_issues_path(@project) do | |
| 3 | + ← To issues list | |
| 4 | + | |
| 1 | 5 | %h3 |
| 2 | 6 | #{@issue.title} |
| 3 | 7 | %small |
| ... | ... | @@ -24,18 +28,20 @@ |
| 24 | 28 | |
| 25 | 29 | %div.well |
| 26 | 30 | %div |
| 27 | - %cite.cgray Created by | |
| 28 | - = image_tag gravatar_icon(@issue.author_email), :width => 16, :class => "lil_av" | |
| 29 | - %strong.author= link_to_issue_author(@issue) | |
| 30 | - | |
| 31 | - %cite.cgray and currently assigned to | |
| 32 | - = image_tag gravatar_icon(@issue.assignee_email), :width => 16, :class => "lil_av" | |
| 33 | - %strong.author= link_to_issue_assignee(@issue) | |
| 31 | + %div.issue_meta | |
| 32 | + %cite.cgray Created by | |
| 33 | + = image_tag gravatar_icon(@issue.author_email), :width => 16, :class => "lil_av" | |
| 34 | + %strong.author= link_to_issue_author(@issue) | |
| 35 | + | |
| 36 | + %cite.cgray and currently assigned to | |
| 37 | + = image_tag gravatar_icon(@issue.assignee_email), :width => 16, :class => "lil_av" | |
| 38 | + %strong.author= link_to_issue_assignee(@issue) | |
| 34 | 39 | |
| 35 | - - if @issue.closed | |
| 36 | - .alert-message.error Closed | |
| 37 | - - else | |
| 38 | - .alert-message.success Open | |
| 40 | + %div.issue_status | |
| 41 | + - if @issue.closed | |
| 42 | + .alert-message.error Closed | |
| 43 | + - else | |
| 44 | + .alert-message.success Open | |
| 39 | 45 | |
| 40 | 46 | %hr |
| 41 | 47 | ... | ... |