{% if user.is_active and user.is_staff %}
{% jet_get_menu as app_origin_list %}
{% jet_additional_menu_items as app_list %}
⭐ {% trans 'Sidebar Favorites' %}
{% for app in app_list %}
{% if app.has_perms and app.pinned or app.pinned_parent %}
{% if app.pinned %}
{{ app.label }}
{% if app.counter %}
{{ app.counter }}
{% endif %}
{% endif %}
{% if app.pinned_parent %}
{% for model in app.items %}
{% if model.has_perms and model.pinned %}
{% for app in app_list %}
{% if app.has_perms and app.position == "top" %}
{% if app.view_type == "expanded" %}
{% include 'wcd_jet_sidebar/expanded_menu.html' with app=app %}
{% else %}
{% include 'wcd_jet_sidebar/collapse_menu.html' with app=app %}
{% endif %}
{% endif %}
{% endfor %}
{% for app in app_list %}
{% if app.has_perms and not app.position %}
{% include 'wcd_jet_sidebar/expanded_menu.html' with app=app %}
{% endif %}
{% endfor %}
{% for app in app_list %}
{% if app.has_perms and app.position == "bottom" %}
{% if app.view_type == "expanded" %}
{% include 'wcd_jet_sidebar/expanded_menu.html' with app=app %}
{% else %}
{% include 'wcd_jet_sidebar/collapse_menu.html' with app=app %}
{% endif %}
{% endif %}
{% endfor %}
{% trans "Are you sure want to delete this bookmark?" %}