Retrospring/app/views/services/index.html.haml

25 lines
1.0 KiB
Plaintext
Raw Normal View History

2015-05-10 10:48:47 -07:00
- provide(:title, "Service Settings | #{APP_CONFIG['site_name']}")
2014-12-12 12:54:17 -08:00
.container.j2-page
= render 'user/settings_tabs'
.col-md-9.col-xs-12.col-sm-9
= render 'layouts/messages'
2014-12-12 12:54:17 -08:00
.panel.panel-default
.panel-body
- if @services.count > 0
Sharing is enabled for the following services:
- else
You have not connected any services yet.
- APP_CONFIG['sharing'].each do |service, service_options|
2014-12-12 13:37:52 -08:00
- if service_options['enabled'] and !@services.any? { |x| x.provider == service.to_s }
2015-01-13 09:59:58 -08:00
%p=link_to "Connect to #{service.capitalize}", "/auth/#{service}"
2015-01-13 10:06:26 -08:00
- if @services.count > 0
%ul.list-group
- @services.each do |service|
%li.list-group-item
%i{class: "fa fa-#{service.provider}"}
%strong= service.provider.capitalize
(#{service.nickname})
2015-05-10 10:48:47 -07:00
= link_to 'Disconnect', service_path(service), data: { confirm: "Really disconnect service #{service.provider.capitalize}?" }, method: :delete