{% extends "dashboard/layouts/base.html" %} {% block content %}
{{ segment | title }} Cards
{% block segmentheader %} {% endblock segmentheader %}
{% if cards %} {% for item in cards %}
{{ item.name | replace(segment + '/', '') }}
{# You can change this icon as needed #}

{{ item.attributes.docs }}

{% endfor %} {% else %}

No Cards Found

Cards are visual containers that help organize and present information in a clean, structured way.


To create a new card, simply create a @virtualobj function and store it in scripts/cards. Your function must return a list of dicts

[{ "title": "some title", "content": ""}, ...]

{% endif %}
{% endblock %} {% block javascripts %} {% endblock %} {% block stylesheets %} {% endblock %}