show.html.haml 1.3 KB
Newer Older
1
%h4.page-title
2
  .issue-box{ class: issue_box_class(@issue) }
3
    - if @issue.closed?
4
      Closed
5
    - else
6 7
      Open
  Issue ##{@issue.iid}
8 9 10 11 12
  %small.creator
    · created by #{link_to_member(@project, @issue.author)} #{issue_timestamp(@issue)}

  .pull-right
    - if can?(current_user, :write_issue, @project)
13
      = link_to new_project_issue_path(@project), class: "btn btn-grouped new-issue-link", title: "New Issue", id: "new_issue_link" do
14 15 16 17 18 19 20
        %i.fa.fa-plus
        New Issue
    - if can?(current_user, :modify_issue, @issue)
      - if @issue.closed?
        = link_to 'Reopen', project_issue_path(@project, @issue, issue: {state_event: :reopen }, status_only: true), method: :put,  class: "btn btn-grouped btn-reopen"
      - else
        = link_to 'Close', project_issue_path(@project, @issue, issue: {state_event: :close }, status_only: true), method: :put, class: "btn btn-grouped btn-close", title: "Close Issue"
21

22 23 24
      = link_to edit_project_issue_path(@project, @issue), class: "btn btn-grouped issuable-edit" do
        %i.fa.fa-pencil-square-o
        Edit
25

26 27 28 29 30 31 32 33 34 35 36 37
%hr
%h3.issue-title
  = gfm escape_once(@issue.title)
%div
  - if @issue.description.present?
    .description
      .wiki
        = preserve do
          = markdown(@issue.description, parse_tasks: true)

%hr
= render "projects/issues/discussion"