diff --git a/app/models/communication/website/with_dependencies.rb b/app/models/communication/website/with_dependencies.rb
index bde400a23e73aeebba0a26552d8d7a27b73fdc6a..aa2262cd2b99ddcca2f036beca907dbe182d1458 100644
--- a/app/models/communication/website/with_dependencies.rb
+++ b/app/models/communication/website/with_dependencies.rb
@@ -76,6 +76,7 @@ module Communication::Website::WithDependencies
       people += teachers + teachers.map(&:teacher) if has_teachers?
       people += administrators + administrators.map(&:administrator) if has_administrators?
       people += researchers + researchers.map(&:researcher) if has_researchers?
+      people += people_in_blocks if has_people_in_blocks?
       people.uniq.compact
     end
   end
@@ -110,12 +111,11 @@ module Communication::Website::WithDependencies
   end
 
   def has_people_in_blocks?
-    # TODO
     people_in_blocks.compact.any?
   end
 
   def has_persons?
-    has_authors? || has_administrators? || has_researchers? || has_teachers?
+    has_authors? || has_administrators? || has_researchers? || has_teachers? || has_people_in_blocks?
   end
 
   def has_administrators?
diff --git a/app/views/admin/communication/website/categories/static.html.erb b/app/views/admin/communication/website/categories/static.html.erb
index 1674051a6bf19c7270712b84cd5a97e345668c17..41e12cc46bb9954cdbe95dc9645cef06c8b741b3 100644
--- a/app/views/admin/communication/website/categories/static.html.erb
+++ b/app/views/admin/communication/website/categories/static.html.erb
@@ -2,7 +2,7 @@
 title: "<%= @about.name %>"
 slug: "<%= @about.slug %>"
 <% if @about.parent %>
-parent: "<%= about.parent.slug %>"
+parent: "<%= @about.parent.slug %>"
 <% end %>
 position: <%= @about.position %>
 <% if @about.best_featured_image.attached? %>