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

_installation_info.html.haml « mattermost_slash_commands « services « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: abc68e955e7f3cf5406f4dd5faaba97b71df0668 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.services-installation-info
  .row
    %strong.col-sm-3.text-right Status
    .col-sm-9= @service.activated? ? 'Installed' : 'Not installed'
  .row
    %strong.col-sm-3.text-right Mattermost
    = link_to pretty_url(Gitlab.config.mattermost.host), Gitlab.config.mattermost.host, class: 'col-sm-9', target: '__blank'
  .row
    %strong.col-sm-3.text-right Installation
    .col-sm-9
      - if @service.activated?
        To edit or uninstall this service, press
        %strong Edit in Mattermost
      - else
        To install this service, press
        %strong Add to Mattermost
        and follow the instructions
  .row
    .col-sm-9.col-sm-offset-3
      = link_to new_namespace_project_mattermost_path(@project.namespace, @project), class: 'btn btn-lg' do
        = custom_icon('mattermost_logo', size: 15)
        = @service.activated? ? 'Edit in Mattermost' : 'Add to Mattermost'