BigW Consortium Gitlab

_chat_name.html.haml 790 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
- service = chat_name.service
- project = service.project
%tr
  %td
    %strong
      - if can?(current_user, :read_project, project)
        = link_to project.name_with_namespace, project_path(project)
      - else
        .light N/A
  %td
    %strong
      - if can?(current_user, :admin_project, project)
13
        = link_to service.title, edit_project_service_path(project, service)
14 15 16 17 18 19 20 21
      - else
        = service.title
  %td
    = chat_name.team_domain
  %td
    = chat_name.chat_name
  %td
    - if chat_name.last_used_at
22
      = time_ago_with_tooltip(chat_name.last_used_at)
23 24 25 26 27
    - else
      Never

  %td
    = link_to 'Remove', profile_chat_name_path(chat_name), method: :delete, class: 'btn btn-danger pull-right', data: { confirm: 'Are you sure you want to revoke this nickname?' }