summaryrefslogtreecommitdiff
path: root/app/views/issues/_show.html.haml
blob: afcd2b6e7c569cc8fff1aeb2d6248c3496bf40d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
%tr{ :id => dom_id(issue), :class => "issue #{issue.critical ? "critical" : ""}", :url => project_issue_path(@project, issue) }
  - if can?(current_user, :admin_issue, @project) && !params[:f] || params[:f] == "0"
    %td
      = image_tag "move.png" , :class => [:handle, :left]
  %td
    = image_tag gravatar_icon(issue.assignee.email), :class => "left", :width => 40, :style => "padding:0 5px;"
    = truncate issue.assignee.name, :lenght => 20
  %td ##{issue.id}
  %td
    = html_escape issue.title
    %br
    - if issue.critical
      %span.tag.high critical
    - if issue.today?
      %span.tag.today today
    -#- if issue.author == current_user
      -#%span.tag.yours yours
    -#- if issue.notes.count > 0
      -#%span.tag.notes
        -#= issue.notes.count
        -#notes
  %td
    - if can? current_user, :write_issue, @project
      = form_for([@project, issue], :remote => true) do |f|
        = f.check_box :closed, :onclick => "$(this).parent().submit();"
        = hidden_field_tag :status_only, true
    - else
      = check_box_tag "closed", 1, issue.closed, :disabled => true
  %td
    - if can?(current_user, :admin_issue, @project) || issue.author == current_user
      = link_to 'Edit', edit_project_issue_path(@project, issue), :class => "lbutton positive", :remote => true
    - if can?(current_user, :admin_issue, @project) || issue.author == current_user
      = link_to 'Destroy', [@project, issue], :confirm => 'Are you sure?', :method => :delete, :remote => true, :class => "lbutton delete-issue negative", :id => "destroy_issue_#{issue.id}"