2019-09-04 21:01:54 +05:30
|
|
|
- page_title _('Chat')
|
2017-09-10 17:25:29 +05:30
|
|
|
- @content_class = "limit-container-width" unless fluid_layout
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
.row.prepend-top-default
|
2017-09-10 17:25:29 +05:30
|
|
|
.col-lg-4.profile-settings-sidebar
|
2017-08-17 22:00:37 +05:30
|
|
|
%h4.prepend-top-0
|
|
|
|
= page_title
|
|
|
|
%p
|
2019-09-04 21:01:54 +05:30
|
|
|
= _('You can see your chat accounts.')
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
.col-lg-8
|
2017-08-17 22:00:37 +05:30
|
|
|
%h5 Active chat names (#{@chat_names.size})
|
|
|
|
|
|
|
|
- if @chat_names.present?
|
|
|
|
.table-responsive
|
|
|
|
%table.table.chat-names
|
|
|
|
%thead
|
|
|
|
%tr
|
2019-09-04 21:01:54 +05:30
|
|
|
%th= _('Project')
|
|
|
|
%th= _('Service')
|
|
|
|
%th= _('Team domain')
|
|
|
|
%th= _('Nickname')
|
|
|
|
%th= _('Last used')
|
2017-08-17 22:00:37 +05:30
|
|
|
%th
|
|
|
|
%tbody
|
|
|
|
= render @chat_names
|
|
|
|
|
|
|
|
- else
|
|
|
|
.settings-message.text-center
|
2019-09-04 21:01:54 +05:30
|
|
|
= _("You don't have any active chat names.")
|