{% extends 'devtools/base.html' %} {% load devtools_extras %} {% block title %}Table Explorer - Django DevTools{% endblock %} {% block content %}
Browse and explore your database tables with advanced filtering and pagination
{{ error }}
|
{{ field.verbose_name }}
{{ field.type }}
|
{% endfor %}
|---|
| {% with value=row|lookup:field.name %} {% if value == 'NULL' %} NULL {% elif value|length > 50 %} {{ value|truncatechars:50 }} {% else %} {{ value }} {% endif %} {% endwith %} | {% endfor %}
This model doesn't contain any records yet.
Choose a table from your Django models to start exploring the data.