Welcome to mirror list, hosted at ThFree Co, Russian Federation.

show.html.haml « issues « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bd28d8a1db29a82f6f1cde6a54d7300a21606ebc (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
.issue
  .issue-details
    %h4.page-title
      .issue-box{ class: issue_box_class(@issue) }
        - if @issue.closed?
          Closed
        - else
          Open
      Issue ##{@issue.iid}
      %small.creator
        · created by #{link_to_member(@project, @issue.author)} #{issue_timestamp(@issue)}

      .pull-right
        - if can?(current_user, :write_issue, @project)
          = link_to new_namespace_project_issue_path(@project.namespace, @project), class: "btn btn-grouped new-issue-link", title: "New Issue", id: "new_issue_link" do
            %i.fa.fa-plus
            New Issue
        - if can?(current_user, :modify_issue, @issue)
          - if @issue.closed?
            = link_to 'Reopen', issue_path(@issue, issue: {state_event: :reopen }, status_only: true), method: :put,  class: "btn btn-grouped btn-reopen"
          - else
            = link_to 'Close', issue_path(@issue, issue: {state_event: :close }, status_only: true), method: :put, class: "btn btn-grouped btn-close", title: "Close Issue"

          = link_to edit_namespace_project_issue_path(@project.namespace, @project, @issue), class: "btn btn-grouped issuable-edit" do
            %i.fa.fa-pencil-square-o
            Edit

    %hr
    %h2.issue-title
      = gfm escape_once(@issue.title)
    %div
      - if @issue.description.present?
        .description
          .wiki
            = preserve do
              = markdown(@issue.description, parse_tasks: true)

    %hr
  .issue-discussion
    = render "projects/issues/discussion"