{% extends 'pxy_dashboard/partials/base.html' %} {% load static %} {% block title %}Polisplexity Portal{% endblock title %} {% block content %}

Welcome to Polisplexity

Select one of the available options

{% for category, items in grouped_menu_items.items %} {% if not forloop.first %}

{% endif %}

{{ category.name }}

{{ category.description }}

{% for menu_item in items %}
{% if menu_item.image %} {{ menu_item.title }} {% elif menu_item.icon %}
{{ menu_item.icon }}
{% endif %}
{{ menu_item.title }}

{{ menu_item.description }}

{{ menu_item.url_text }}
{% endfor %}
{% endfor %}
{% endblock content %}