diff --git a/app/models/communication/block/template/chapter.rb b/app/models/communication/block/template/chapter.rb
index 971c787efc1ec9f4dc4046e22275180cff703237..e51d0996619ff2807e9cafcb79d2dfd4f1da58fb 100644
--- a/app/models/communication/block/template/chapter.rb
+++ b/app/models/communication/block/template/chapter.rb
@@ -6,4 +6,8 @@ class Communication::Block::Template::Chapter < Communication::Block::Template
   def text
     "#{data['text']}"
   end
+
+  def notes
+    "#{data['notes']}"
+  end
 end
diff --git a/app/views/admin/communication/blocks/templates/chapter/_show.html.erb b/app/views/admin/communication/blocks/templates/chapter/_show.html.erb
index 57a0e4c3bf6878fe56d061742067117999cf667f..868577d6eff62a0ce96921d9b56a4195f5eaaf2e 100644
--- a/app/views/admin/communication/blocks/templates/chapter/_show.html.erb
+++ b/app/views/admin/communication/blocks/templates/chapter/_show.html.erb
@@ -1 +1,2 @@
 <%= @block.template.text.html_safe %>
+<%= @block.template.notes.html_safe %>
diff --git a/app/views/admin/communication/blocks/templates/chapter/_static.html.erb b/app/views/admin/communication/blocks/templates/chapter/_static.html.erb
index fe07289fb4d4d1de73db42aa29fa06fb03bc22e4..1dcbc92180d28edca1d4f8f2b2dec4fface6340e 100644
--- a/app/views/admin/communication/blocks/templates/chapter/_static.html.erb
+++ b/app/views/admin/communication/blocks/templates/chapter/_static.html.erb
@@ -1,2 +1,4 @@
       text: >-
         <%= prepare_html_for_static block.template.text, about.university %>
+      notes: >-
+        <%= prepare_html_for_static block.template.notes, about.university %>