{% extends "djask-admin/base.html" %} {% from "djask-admin/macros.html" import render_top_panel, render_schema with context %} {% block title %}Djask - Model {{ model_name }}{% endblock %} {% block content %} {% include "djask-admin/aside.html" %}
{{ render_top_panel("Model "+model_name, "") }}
{{ render_schema(schema) }}
{% for instance in instances %} {% endfor %}
ID Created At Updated At
{{ model_name~" "~instance.id }}
{% endblock %} {% block extra_scripts %} {% endblock %}