mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-17 00:26:07 +10:00
Clean up admin dashboad tooltips Clean up admin dashboad tooltips Clean up admin dashboad tooltips Add helper method change to use app helper Modify tooltips to use new helper Convert remaining times Adjust one tooltip
25 lines
1.0 KiB
Plaintext
25 lines
1.0 KiB
Plaintext
%li
|
|
.pull-right
|
|
- if @available_keys.include?(deploy_key)
|
|
= link_to enable_project_deploy_key_path(@project, deploy_key), class: 'btn btn-small', method: :put do
|
|
%i.icon-plus
|
|
Enable
|
|
- else
|
|
- if deploy_key.projects.count > 1
|
|
= link_to disable_project_deploy_key_path(@project, deploy_key), class: 'btn btn-small', method: :put do
|
|
%i.icon-off
|
|
Disable
|
|
- else
|
|
= link_to 'Remove', project_deploy_key_path(@project, deploy_key), data: { confirm: 'You are going to remove deploy key. Are you sure?'}, method: :delete, class: "btn btn-remove delete-key btn-small pull-right"
|
|
|
|
|
|
= link_to project_deploy_key_path(deploy_key.projects.include?(@project) ? @project : deploy_key.projects.first, deploy_key) do
|
|
%i.icon-key
|
|
%strong= deploy_key.title
|
|
|
|
%p.light.prepend-top-10
|
|
- deploy_key.projects.map(&:name_with_namespace).each do |project_name|
|
|
%span.label= project_name
|
|
%small.pull-right
|
|
Created #{time_ago_with_tooltip(deploy_key.created_at)} ago
|