summaryrefslogtreecommitdiff
path: root/app/views/jira_connect/subscriptions/index.html.haml
blob: f7ecfd092092e31760bae2f8703df51e267e210e (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
%h1
  GitLab for Jira Configuration

%form#add-subscription-form.subscription-form{ action: jira_connect_subscriptions_path }
  .ak-field-group
    %label
      Namespace

  .ak-field-group.field-group-input
    %input#namespace-input.ak-field-text{ type: 'text', required: true }
    %button.ak-button.ak-button__appearance-primary{ type: 'submit' }
      Link namespace to Jira

%table.subscriptions
  %thead
    %tr
      %th Namespace
      %th Added
      %th
  %tbody
    - @subscriptions.each do |subscription|
      %tr
        %td= subscription.namespace.full_path
        %td= subscription.created_at
        %td= link_to 'Remove', jira_connect_subscription_path(subscription), class: 'remove-subscription'

= page_specific_javascript_tag('jira_connect.js')
= stylesheet_link_tag 'page_bundles/jira_connect'