{% extends "vprad/base.jinja.html" %} {% import 'vprad/macros/actstream.html' as actstream %} {% block content %}

{{ _('Favourites') }}

{% for model_name, items in starred.items() %}

{{ model_name }}

{# TODO: Make this use the item card #}
{% for object in items %} {% endfor %}
{% else %}
{% trans %}Here we show the items you have starred. You can star objects by clicking the star icon next to them in multiple places (like the object list page). {% endtrans %}
{% endfor %}

{{ _('What matters to you') }}

actstream.action_feed(user_stream)
{% endblock %}