debian-mirror-gitlab/app/views/projects/issues/_discussion.html.haml

10 lines
556 B
Text
Raw Normal View History

2015-04-26 12:48:37 +05:30
- content_for :note_actions do
2015-09-11 14:41:01 +05:30
- if can?(current_user, :update_issue, @issue)
2015-04-26 12:48:37 +05:30
- if @issue.closed?
2015-09-11 14:41:01 +05:30
= link_to 'Reopen Issue', issue_path(@issue, issue: {state_event: :reopen}, status_only: true), method: :put, class: 'btn btn-grouped btn-reopen js-note-target-reopen', title: 'Reopen Issue'
2015-04-26 12:48:37 +05:30
- else
2015-09-11 14:41:01 +05:30
= link_to 'Close Issue', issue_path(@issue, issue: {state_event: :close}, status_only: true), method: :put, class: 'btn btn-grouped btn-close js-note-target-close', title: 'Close Issue'
2015-12-23 02:04:40 +05:30
#notes
= render 'projects/notes/notes_with_form'