summaryrefslogtreecommitdiff
path: root/app/views/tenants/show.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/tenants/show.html.haml')
-rw-r--r--app/views/tenants/show.html.haml9
1 files changed, 3 insertions, 6 deletions
diff --git a/app/views/tenants/show.html.haml b/app/views/tenants/show.html.haml
index cb2b895..53d3307 100644
--- a/app/views/tenants/show.html.haml
+++ b/app/views/tenants/show.html.haml
@@ -1,8 +1,5 @@
-- title t("tenants.show.page_title")
+- content_for :title, @tenant.name
-%p
- %strong= t('tenants.show.name') + ":"
- = @tenant.name
- if !@tenant.description.blank?
%p
%strong= t('tenants.show.description') + ":"
@@ -10,5 +7,5 @@
= 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' \ No newline at end of file
+- 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} \ No newline at end of file