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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-11-16 16:56:30 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2016-11-16 16:56:30 +0300
commitd64183e1fa26ab77107e3a2a20be1fe4df3a1875 (patch)
tree00d7b51545c116ce67bb857fd1003ea381250584 /app/views/profiles/chat_names/index.html.haml
parentc60437786bfe43344b4a5eb040437f73f37c6396 (diff)
Add most of specs for chat names
Diffstat (limited to 'app/views/profiles/chat_names/index.html.haml')
-rw-r--r--app/views/profiles/chat_names/index.html.haml14
1 files changed, 10 insertions, 4 deletions
diff --git a/app/views/profiles/chat_names/index.html.haml b/app/views/profiles/chat_names/index.html.haml
index f90ac4c6a03..ae0b6336944 100644
--- a/app/views/profiles/chat_names/index.html.haml
+++ b/app/views/profiles/chat_names/index.html.haml
@@ -1,4 +1,4 @@
-- page_title "Chat"
+- page_title 'Chat'
= render 'profiles/head'
.row.prepend-top-default
@@ -20,7 +20,7 @@
%th Service
%th Team domain
%th Nickname
- %th Created
+ %th Last used
%th
%tbody
- @chat_names.each do |chat_name|
@@ -41,8 +41,14 @@
= chat_name.service.title
%td= chat_name.team_domain
%td= chat_name.chat_name
- %td= chat_name.created_at
- %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?" }
+ %td=
+ - if chat_name.used_at
+ time_ago_with_tooltip(chat_name.used_at)
+ - 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?' }
- else
.settings-message.text-center