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

Models

{{ models | length }} model{{ "s" if models | length != 1 else "" }}

{% if not models %}

No models yet

Create your first model to start modelling data.

{% else %}
{% for model in models %}

{{ model.class_name }}

{{ model.table_name }}

{{ model.columns | length }} column{{ "s" if model.columns | length != 1 else "" }} {{ model.relationships | length }} relationship{{ "s" if model.relationships | length != 1 else "" }}
{% endfor %}
{% endif %}
{% include "studio/partials/new_model_modal.html" %} {% endblock %}