{% extends 'base/navbar_base.html' %}
{% load static %}
{% load custom_tags_and_filters %}
{% block navbar_main %}
{{ block.super }}
{% include 'base/navbar_stockroom.html' %}
{% endblock %}
{% block navbar_admin %}
{{ block.super }}
{% if "NEMO_billing"|app_installed %}
{% include 'base/navbar_billing.html' %}
{% endif %}
{% if "NEMO_reports"|app_installed %}
{% include 'base/navbar_reports.html' %}
{% endif %}
{% endblock %}