summaryrefslogtreecommitdiff
path: root/app/views/tenants/show.html.haml
blob: 10845cf591345d573cb6b1d415c8fab109c43e88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- title t("tenants.show.page_title")

- cache(['tenant_show_name_and_description', I18n.locale, @tenant, current_user]) do
  %p
    %strong= t('tenants.show.name') + ":"
    = @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').count > 0 && @tenant.user_groups.where(:name => 'Admins').first.users.include?(current_user)
  = render 'admin_area'