diff options
Diffstat (limited to 'ishtar_common/templates/base.html')
-rw-r--r-- | ishtar_common/templates/base.html | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ishtar_common/templates/base.html b/ishtar_common/templates/base.html index 0b385267d..e24d4c91a 100644 --- a/ishtar_common/templates/base.html +++ b/ishtar_common/templates/base.html @@ -58,7 +58,7 @@ {% block extra_head %} {% endblock %} </head> -<body{% if current_theme%} id='{{current_theme}}'{%endif%}> +<body data-spy="scroll" data-target="#window-fixed-menu"{% if current_theme%} id='{{current_theme}}'{%endif%}> {% include "navbar.html" %} <div id="context-menu" class="navbar navbar-expand-lg"></div> {% if reminders %} @@ -76,10 +76,15 @@ {% block pre_container %}{% endblock %} <div class="container"> {% block top_content %}{% endblock %} + <nav id="window-fixed-menu" + class="navbar navbar-light flex-column"> + <a class="navbar-brand" href="#">{% trans "Sheets" %}</a> + <ul class="nav nav-pills flex-column" id="window-fixed-menu-list"> + </ul> + </nav> <div id="window_wrapper"> <div id="window" role="tablist"></div> </div> - {% if warnings %}{% for warning in warnings %} <div class="alert alert-warning alert-dismissible fade show" role="alert"> {{warning}}<button type="button" class="close" data-dismiss="alert" aria-label="Close"> |