2012-06-30 17:35:24 -04:00
|
|
|
%h3.page_title
|
2012-03-25 12:05:24 -04:00
|
|
|
Issue ##{@issue.id}
|
2012-06-26 12:08:44 -04:00
|
|
|
|
2012-01-29 16:59:12 -05:00
|
|
|
%small
|
2012-06-03 18:37:27 -04:00
|
|
|
created at
|
2012-01-29 16:59:12 -05:00
|
|
|
= @issue.created_at.stamp("Aug 21, 2011")
|
2012-01-29 05:04:09 -05:00
|
|
|
|
2013-01-30 09:40:43 -05:00
|
|
|
%span.pull-right
|
2013-04-03 10:37:34 -04:00
|
|
|
= link_to new_project_issue_path(@project), class: "btn grouped", title: "New Issue", id: "new_issue_link" do
|
|
|
|
%i.icon-plus
|
|
|
|
New Issue
|
2013-02-25 16:10:50 -05:00
|
|
|
- if can?(current_user, :modify_issue, @issue)
|
2013-02-18 04:10:58 -05:00
|
|
|
- if @issue.closed?
|
2013-02-18 07:49:56 -05:00
|
|
|
= link_to 'Reopen', project_issue_path(@project, @issue, issue: {state_event: :reopen }, status_only: true), method: :put, class: "btn grouped reopen_issue"
|
2012-01-29 05:04:09 -05:00
|
|
|
- else
|
2013-02-18 07:49:56 -05:00
|
|
|
= link_to 'Close', project_issue_path(@project, @issue, issue: {state_event: :close }, status_only: true), method: :put, class: "btn grouped close_issue", title: "Close Issue"
|
2013-02-25 16:10:50 -05:00
|
|
|
|
2012-09-08 10:00:38 -04:00
|
|
|
= link_to edit_project_issue_path(@project, @issue), class: "btn grouped" do
|
2012-05-24 02:23:25 -04:00
|
|
|
%i.icon-edit
|
2013-02-26 03:17:09 -05:00
|
|
|
Edit
|
2012-01-29 05:04:09 -05:00
|
|
|
|
2013-01-30 09:40:43 -05:00
|
|
|
.pull-right
|
2012-09-10 09:27:14 -04:00
|
|
|
.span3#votes= render 'votes/votes_block', votable: @issue
|
2012-02-18 07:12:48 -05:00
|
|
|
|
2012-03-25 12:05:24 -04:00
|
|
|
.back_link
|
2012-06-03 18:37:27 -04:00
|
|
|
= link_to project_issues_path(@project) do
|
2012-03-25 12:05:24 -04:00
|
|
|
← To issues list
|
2012-02-18 07:12:48 -05:00
|
|
|
|
2012-09-08 10:44:56 -04:00
|
|
|
|
2013-01-04 16:35:31 -05:00
|
|
|
.ui-box.ui-box-show
|
|
|
|
.ui-box-head
|
2012-12-12 22:14:05 -05:00
|
|
|
%h4.box-title
|
2013-02-18 04:10:58 -05:00
|
|
|
- if @issue.closed?
|
2012-12-12 22:14:05 -05:00
|
|
|
.error.status_info Closed
|
2012-09-19 20:21:12 -04:00
|
|
|
= gfm escape_once(@issue.title)
|
2012-03-14 09:31:31 -04:00
|
|
|
|
2013-01-04 16:35:31 -05:00
|
|
|
.ui-box-body
|
2012-12-12 22:14:05 -05:00
|
|
|
%cite.cgray
|
|
|
|
Created by #{link_to_member(@project, @issue.author)}
|
|
|
|
- if @issue.assignee
|
|
|
|
\ and currently assigned to #{link_to_member(@project, @issue.assignee)}
|
2012-04-16 17:22:59 -04:00
|
|
|
|
2012-06-03 18:37:27 -04:00
|
|
|
- if @issue.milestone
|
2012-04-16 17:22:59 -04:00
|
|
|
- milestone = @issue.milestone
|
2012-06-03 18:37:27 -04:00
|
|
|
%cite.cgray and attached to milestone
|
2012-08-10 18:07:50 -04:00
|
|
|
%strong= link_to_gfm truncate(milestone.title, length: 20), project_milestone_path(milestone.project, milestone)
|
2012-06-03 18:37:27 -04:00
|
|
|
|
2013-01-30 09:40:43 -05:00
|
|
|
.pull-right
|
2012-06-27 14:20:35 -04:00
|
|
|
- @issue.labels.each do |label|
|
2013-05-07 12:26:41 -04:00
|
|
|
%span{class: "label #{label_css_class(label.name)}"}
|
2012-06-27 14:20:35 -04:00
|
|
|
%i.icon-tag
|
|
|
|
= label.name
|
|
|
|
|
2012-06-26 12:08:44 -04:00
|
|
|
|
2012-03-28 03:46:51 -04:00
|
|
|
- if @issue.description.present?
|
2013-01-04 16:35:31 -05:00
|
|
|
.ui-box-bottom
|
2013-01-10 11:09:12 -05:00
|
|
|
.wiki
|
|
|
|
= preserve do
|
|
|
|
= markdown @issue.description
|
2012-01-29 05:04:09 -05:00
|
|
|
|
2013-02-25 16:10:50 -05:00
|
|
|
- content_for :note_actions do
|
|
|
|
- if can?(current_user, :modify_issue, @issue)
|
|
|
|
- if @issue.closed?
|
|
|
|
= link_to 'Reopen Issue', project_issue_path(@project, @issue, issue: {state_event: :reopen }, status_only: true), method: :put, class: "btn grouped reopen_issue"
|
|
|
|
- else
|
|
|
|
= link_to 'Close Issue', project_issue_path(@project, @issue, issue: {state_event: :close }, status_only: true), method: :put, class: "btn grouped close_issue", title: "Close Issue"
|
2012-01-29 05:04:09 -05:00
|
|
|
|
2012-12-03 15:43:17 -05:00
|
|
|
.voting_notes#notes= render "notes/notes_with_form"
|