diff --git a/home/templates/home/home_page.html b/home/templates/home/home_page.html index 1959d3c304dd5d451c1248335907a166cc430543..557d74f15334789b17efac0603a616ec2ce59679 100644 --- a/home/templates/home/home_page.html +++ b/home/templates/home/home_page.html @@ -256,7 +256,7 @@ {% if block.block_type == "person" %} {% include_block block %} {% else %} - {% include "home/blocks/person_page_block.html" with page=block %} + {% include "home/blocks/person_page_block.html" with page=block.value %} {% endif %} {% endfor %} </ul> @@ -275,7 +275,7 @@ {% if block.block_type == "person" %} {% include_block block %} {% else %} - {% include "home/blocks/person_page_block.html" with page=block %} + {% include "home/blocks/person_page_block.html" with page=block.value %} {% endif %} {% endfor %} </ul> @@ -300,7 +300,7 @@ {% if block.block_type == "person" %} {% include_block block %} {% else %} - {% include "home/blocks/person_page_block.html" with page=block %} + {% include "home/blocks/person_page_block.html" with page=block.value %} {% endif %} {% endfor %} </ul> @@ -322,7 +322,7 @@ {% if block.block_type == "person" %} {% include_block block %} {% else %} - {% include "home/blocks/person_page_block.html" with page=block %} + {% include "home/blocks/person_page_block.html" with page=block.value %} {% endif %} {% endfor %} </ul>