{% extends base %}
{% block body %}
{% init table_name = "" %}
{% init error = "" %}
{% init cost_time = None %}
{% init path = "" %}
{% init path_list = [] %}
{% init sql = "" %}
{% init keys = [] %}
{{T("表结构")}} - {{table_name}}
{% include common/button/back_button.html %}
字段
{% for head_ in column_info.head %}
{{head_}} |
{% end %}
{% for item in column_info.items %}
{% for head_ in column_info.head %}
{{item.get(head_)}} |
{% end %}
{% end %}
索引
{% for head_ in index_info.head %}
{{head_}} |
{% end %}
{% for item in index_info.items %}
{% for head_ in index_info.head %}
{{item.get(head_)}} |
{% end %}
{% end %}
{% end %}
{% block body_right %}
{% include common/sidebar/default.html %}
{% end %}