summaryrefslogtreecommitdiff
path: root/app/views/projects/issues/show.html.haml
blob: 7ed898ce72fbc6f1997baa09b4a91a70a8de0225 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
- page_title           "#{@issue.title} (##{@issue.iid})", "Issues"
- page_description     @issue.description
- page_card_attributes @issue.card_attributes

= render "header_title"

.issue
  .detail-page-header
    .status-box{ class: "status-box-closed #{issue_button_visibility(@issue, false)}"} Closed
    .status-box{ class: "status-box-open #{issue_button_visibility(@issue, true)}"} Open
    %span.identifier
      Issue ##{@issue.iid}
    %span.creator
      ·
      opened by #{link_to_member(@project, @issue.author, size: 24)}
      ·
      = time_ago_with_tooltip(@issue.created_at, placement: 'bottom', html_class: 'issue_created_ago')
      - if @issue.updated_at != @issue.created_at
        %span
          ·
          = icon('edit', title: 'edited')
          = time_ago_with_tooltip(@issue.updated_at, placement: 'bottom', html_class: 'issue_edited_ago')

    .pull-right
      - if can?(current_user, :create_issue, @project)
        = link_to new_namespace_project_issue_path(@project.namespace, @project), class: 'btn btn-nr btn-grouped new-issue-link btn-success', title: 'New Issue', id: 'new_issue_link' do
          = icon('plus')
          New Issue
      - if can?(current_user, :update_issue, @issue)
        = link_to 'Reopen', issue_path(@issue, issue: {state_event: :reopen}, status_only: true, format: 'json'), data: {no_turbolink: true}, class: "btn btn-nr btn-grouped btn-reopen #{issue_button_visibility(@issue, false)}", title: 'Reopen Issue'
        = link_to 'Close', issue_path(@issue, issue: {state_event: :close}, status_only: true, format: 'json'), data: {no_turbolink: true}, class: "btn btn-nr btn-grouped btn-close #{issue_button_visibility(@issue, true)}", title: 'Close Issue'

        = link_to edit_namespace_project_issue_path(@project.namespace, @project, @issue), class: 'btn btn-nr btn-grouped issuable-edit' do
          = icon('pencil-square-o')
          Edit

  .issue-details.issuable-details
    .detail-page-description.gray-content-block.second-block
      %h2.title
        = markdown escape_once(@issue.title), pipeline: :single_line
      %div
        - if @issue.description.present?
          .description{class: can?(current_user, :update_issue, @issue) ? 'js-task-list-container' : ''}
            .wiki
              = preserve do
                = markdown(@issue.description, cache_key: [@issue, "description"])
            %textarea.hidden.js-task-list-field
              = @issue.description

        .merge-requests
          = render 'merge_requests'

    .gray-content-block.second-block.oneline-block
      = render 'votes/votes_block', votable: @issue

    .row
      %section.col-md-9
        .issuable-discussion
          = render 'projects/issues/discussion'

      %aside.col-md-3
        = render 'shared/issuable/sidebar', issuable: @issue

      = render 'shared/show_aside'