{% extends "studio/base.html" %} {% block studio_title %}Data{% endblock %} {% block studio_content %}

Data

Browse and edit live database rows

{% if selected_table %} {% endif %}
{% if not tables %}

No tables found

Create models and run a migration to see tables here.

Run migrations
{% else %}
{% for table in tables %} {{ table }} {% endfor %}
{% if selected_table %}

{{ selected_table }}

{{ rows_data.total }} row{{ "s" if rows_data.total != 1 else "" }}
{% if not rows_data.rows %}
This table is empty.
{% else %}
{% for col in columns %} {% endfor %} {% for row in rows_data.rows %} {% for col in columns %} {% set val = row[loop.index0] %} {% endfor %} {% endfor %}
{{ col.name }} {% if col.primary_key %}*{% endif %} Actions
{{ val if val is not none else "" }}
{% if rows_data.pages > 1 %}
Page {{ rows_data.page }} of {{ rows_data.pages }}
{% if rows_data.page > 1 %} Previous {% endif %} {% if rows_data.page < rows_data.pages %} Next {% endif %}
{% endif %} {% endif %}
{% endif %} {% endif %}
{% endblock %}