gitlabhq/app/views/issues/_show.html.haml

39 lines
1.7 KiB
Plaintext
Raw Normal View History

2012-06-21 07:29:53 +02:00
%li.wll{ :id => dom_id(issue), :class => issue_css_classes(issue), :url => project_issue_path(issue.project, issue) }
- if controller.controller_name == 'issues'
.issue_check
= check_box_tag dom_id(issue,"selected"), nil, false, 'data-id' => issue.id, :class => "selected_issue", :disabled => !can?(current_user, :modify_issue, issue)
2012-01-29 11:04:09 +01:00
.right
- issue.labels.each do |label|
2012-07-05 08:35:23 +02:00
%span.label.label-issue.grouped
%i.icon-tag
= label.name
- if issue.notes.any?
2012-07-05 08:35:23 +02:00
%span.btn.small.disabled.grouped
2012-06-26 20:20:05 +02:00
%i.icon-comment
= issue.notes.count
- if can? current_user, :modify_issue, issue
2012-01-29 11:04:09 +01:00
- if issue.closed
= link_to 'Reopen', project_issue_path(issue.project, issue, :issue => {:closed => false }, :status_only => true), :method => :put, :class => "btn small grouped reopen_issue", :remote => true
2012-01-29 11:04:09 +01:00
- else
= link_to 'Resolve', project_issue_path(issue.project, issue, :issue => {:closed => true }, :status_only => true), :method => :put, :class => "success btn small grouped close_issue", :remote => true
= link_to edit_project_issue_path(issue.project, issue), :class => "btn small edit-issue-link", :remote => true do
2012-05-24 08:23:25 +02:00
%i.icon-edit
Edit
2012-06-26 20:47:25 +02:00
- if issue.assignee
= image_tag gravatar_icon(issue.assignee_email), :class => "avatar"
- else
= image_tag "no_avatar.png", :class => "avatar"
2012-08-02 02:31:45 +02:00
%p= link_to_gfm truncate(issue.title, :length => 100), project_issue_path(issue.project, issue), :class => "row_title"
2012-06-26 21:23:49 +02:00
%span.update-author
%small.cdark= "##{issue.id}"
2012-06-26 21:23:49 +02:00
- if issue.assignee
assigned to #{issue.assignee_name}
- else
 
- if issue.upvotes > 0
2012-07-28 02:35:24 +02:00
%span.badge.badge-success= "+#{issue.upvotes}"