Base.html extends into create.html
base.html
{% block title %}Index{% endblock %}
{% block body %}
<h1>Index</h1>
<p class="important">
Welcome to my awesome homepage.
</p>
{% endblock %}
create.html
{% extends "base.html" %}
{% block title %}Index1{% endblock %}
{% block content %}
<p class="important">
first message.
</p>
{% endblock %}
{% block title %}Index2{% endblock %}
{% block content %}
<p class="important">
second message.
</p>
{% endblock %}
...
{% block title %}Indexn{% endblock %}
{% block content %}
<p class="important">
nth message.
</p>
{% endblock %}
how to extend base.html and repeat template on a single file repeatedly as above? any suggestion.