Ensure title case for child page title in menu

This commit is contained in:
PCoder 2021-09-08 20:34:26 +05:30
parent df0a219f62
commit 65b1241054
1 changed files with 1 additions and 1 deletions

View File

@ -3,6 +3,6 @@
<ul class="dropdown-menu">
<!--<li><a href="{% pageurl parent %}">{{ parent.title }}</a></li>-->
{% for child in menuitems_children %}
<li><a href="{% pageurl child %}">{{ child.title }}</a></li>
<li><a href="{% pageurl child %}">{{ child.title|title }}</a></li>
{% endfor %}
</ul>