[Answered ]-Django template is not showing python variables anymore

1👍

You just have a typo just change .content.geo to .content_geo in your template .

change :

<div class="row justify-content-center">
                <div class="col-lg-6">
                    <div class="appie-section-title text-center">
                        <h3 class="appie-title">{{ advantages_title.content.geo }}</h3>
                        <p>{{ advantages_subtitle.content.geo }}</p>
                    </div>
                </div>
            </div>

to :

<div class="row justify-content-center">
                <div class="col-lg-6">
                    <div class="appie-section-title text-center">
                        <h3 class="appie-title">{{ advantages_title.content_geo }}</h3>
                        <p>{{ advantages_subtitle.content_geo }}</p>
                    </div>
                </div>
            </div>
👤monim

Leave a comment