{% extends "components/_sidebar_layout.html" %} {% from "components/_icon_macro.html" import icon %} {% block sidebar_nav_items %} {% for url, name, label in [ ("/", "home", "Dashboard"), ("/knowledge", "book", "Knowledge"), ("/content", "document", "Content"), ("/chat", "chat", "Chat"), ("/search", "search", "Search"), ("/scratchpad", "scratchpad", "Scratchpad") ] %}
  • {{ icon(name) }} {{ label }}
  • {% endfor %}
  • {% endblock %} {% block sidebar_bottom_actions %}
  • {% include "icons/user_icon.html" %} Account
  • {% if user.admin %}
  • {% include "icons/wrench_screwdriver_icon.html" %} Admin
  • {% endif %}
  • {% include "icons/logout_icon.html" %} Logout
  • {% endblock %}