diff --git a/app/views/admin/education/programs/show.html.erb b/app/views/admin/education/programs/show.html.erb
index a97ddb9cf76eb9d0409c9af2edfe1887cb044a57..93f13b21d0a0ed975957901b2e49f4147eb8c44b 100644
--- a/app/views/admin/education/programs/show.html.erb
+++ b/app/views/admin/education/programs/show.html.erb
@@ -48,8 +48,17 @@
         <h3 class="h5 mt-4">
           <%= Education::Program.human_attribute_name('description') %>
         </h3>
-        <p><% @program.description %></p>
-        <% ['registration', 'pricing', 'duration', 'contacts', 'accessibility', 'other'].each_with_index do |prop, index| %>
+        <p><%= @program.description %></p>
+        <% [
+              :registration,
+              :pricing,
+              :duration,
+              :contacts,
+              :accessibility,
+              :content,
+              :results,
+              :other
+            ].each_with_index do |prop, index| %>
           <%
           best_prop_value = @program.public_send("best_#{prop}")
           best_prop_source = @program.public_send("best_#{prop}_source")