summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/actions.html
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/templates/actions.html')
-rw-r--r--ishtar_common/templates/actions.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/ishtar_common/templates/actions.html b/ishtar_common/templates/actions.html
new file mode 100644
index 000000000..bd70ddf15
--- /dev/null
+++ b/ishtar_common/templates/actions.html
@@ -0,0 +1,26 @@
+<ul class="navbar-nav action-menu justify-content-start">
+ {% with MENU.current_section as section_label %}
+ {% with MENU.current_sections as sections %}
+ {% include "blocks/action_list.html" %}
+ {% endwith %}{% endwith %}
+
+ {% if MENU.current_subsections %}
+ <li class="nav-item d-none d-lg-block">
+ <span class="nav-link">&gt;</span>
+ </li>
+ {% with MENU.current_subsection as section_label %}
+ {% with MENU.current_subsections as sections %}
+ {% include "blocks/action_list.html" %}
+ {% endwith %}{% endwith %}
+ {% endif %}
+
+ {% if MENU.current_subsubsections %}
+ <li class="nav-item d-none d-lg-block">
+ <span class="nav-link">&gt;</span>
+ </li>
+ {% with MENU.current_subsubsection as section_label %}
+ {% with MENU.current_subsubsections as sections %}
+ {% include "blocks/action_list.html" %}
+ {% endwith %}{% endwith %}
+ {% endif %}
+</ul>