Commit 87d9e0d8 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Issue show page restyled

parent 6f32ccf4
.issue-show-holder.ui-box %div
%h3 %span.entity-info
= "Issue ##{@issue.id}" - if can?(current_user, :admin_project, @project) || @issue.author == current_user
.right = link_to edit_project_issue_path(@project, @issue) do
- if @issue.closed .entity-button
%span.tag.closed Closed Edit Issue
- else %i
%span.tag.open Open = image_tag gravatar_icon(@issue.author_email), :class => "left", :width => 40, :style => "padding-right:5px;"
%span.commit-title
.data %strong
%p= @issue.title = "Issue ##{@issue.id}:"
%span.commit-author
%strong
= link_to project_team_member_path(@project, @project.team_member_by_id(@issue.author.id)) do
%span.author= @issue.author_name
- if @issue.author != @issue.assignee
→
= link_to project_team_member_path(@project, @project.team_member_by_id(@issue.assignee.id)) do
%span.author= @issue.assignee_name
 
- if @issue.author == @issue.assignee  
= image_tag gravatar_icon(@issue.assignee_email), :width => 20, :style => "padding:0 5px;" = @issue.created_at.stamp("Aug 21, 2011 9:23pm")
= @issue.assignee_name
- else
= image_tag gravatar_icon(@issue.author_email), :width => 20, :style => "padding:0 5px;"
= @issue.author_name
→
= image_tag gravatar_icon(@issue.assignee_email), :width => 20, :style => "padding:0 5px;"
= @issue.assignee_name
.right
%cite.cgray= @issue.created_at.stamp("21 Aug 2011, 11:15pm")
.clear
.buttons %hr
- if can? current_user, :write_issue, @issue %br
- if @issue.closed %h3
= link_to 'Reopen', project_issue_path(@project, @issue, :issue => {:closed => false }, :status_only => true), :method => :put, :class => "grey-button" = simple_format @issue.title
- else
= link_to 'Close', project_issue_path(@project, @issue, :issue => {:closed => true }, :status_only => true), :method => :put, :class => "grey-button"
.right
= link_to 'Edit', edit_project_issue_path(@project, @issue), :class => "grey-button positive"
.clear .clear
%br %br
%br %br
.issue_notes= render "notes/notes" .merge-tabs
.loading{ :style => "display:none;"} = link_to "#notes", :class => "merge-notes-tab active tab" do
%center= image_tag "ajax-loader.gif" %span
.clear Notes
.right
- if @issue.closed
= link_to 'Reopen', project_issue_path(@project, @issue, :issue => {:closed => false }, :status_only => true), :method => :put, :class => "red-button"
- else
= link_to 'Close', project_issue_path(@project, @issue, :issue => {:closed => true }, :status_only => true), :method => :put, :class => "positive-button"
.merge-request-notes
.issue_notes= render "notes/notes"
.loading{ :style => "display:none;"}
%center= image_tag "ajax-loader.gif"
.clear
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment