blob: 9b9d4ec3b3e4fab4f2569f5180581a44e92879e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
- title @tenant.name
- if !@tenant.description.blank?
%p
%strong= t('tenants.show.description') + ":"
= @tenant.description
= render :partial => 'shared/show_edit_destroy_part', :locals => { :child => @tenant }
- if @tenant.user_groups.where(:name => 'Admins').any? && @tenant.user_groups.where(:name => 'Admins').first.users.include?(current_user)
= render :partial => 'admin_area', :locals => { :tenant => @tenant, :gateways => @gateways}
|