Navigation bar
How to add an entry to the menu / navigation bar:
Add an entry to templates/main/navbar.html:
<li class="nav-item">
<a class="nav-link active" href="{{url_for('InstanceNemo.r_collection', objectId='lexicon_entries', )}}">{{ _('Lexikon') }}</a>
</li>
Optional: Add an entry to templates/main/index.html:
1 <div class="col">
2 <h5 class="text-center"><a class="internal-link"
3 href="{{ url_for('InstanceNemo.r_collection', objectId='lexicon_entries') }}">{{
4 _('Zum E-Lexikon') }}</a></h5>
5 </div>