{% extends 'devtools/base.html' %} {% load devtools_extras %} {% block title %}Tables - DevTools{% endblock %} {% block content %}

Table explorer

{% if error %}
{{ error }}
{% endif %} {% if model %}
Model information
Application: {{ app_label }}
Model: {{ model_name }}
Table: {{ model._meta.db_table }}
Total: {{ total_count }} record{{ total_count|pluralize }}
Records per page
{% if total_pages > 1 %} {% endif %}
{% if data %}
{% for field in fields %} {% endfor %} {% for row in data %} {% for field in fields %} {% endfor %} {% endfor %}
{{ field.verbose_name }}
{{ field.type }}
{% with value=row|lookup:field.name %} {% if value == 'NULL' %} NULL {% elif value|length > 50 %} {{ value|truncatechars:50 }} {% else %} {{ value }} {% endif %} {% endwith %}
{% else %}
No data found for this model.
{% endif %} {% else %}

Select a table to explore

Click on "Choose a table" to start exploring the data.

{% endif %} {% endblock %} {% block extra_js %} {% endblock %}