{% extends "dashboard.html" %} {% load i18n %} {% block dashboard-content %}

{% trans "Starred objects" %}

{% trans "Starred tables" %}

{% include "starred_table_heading.html" %} {% for table in starred_tables %} {% include "starred_table_row.html" %} {% empty %} {% endfor %}
{% trans "No entries found" %}

{% trans "Starred fields" %}

{% include "starred_field_heading.html" %} {% for field in starred_fields %} {% include "starred_field_row.html" %} {% empty %} {% endfor %}
{% trans "No entries found" %}
{% endblock %}