24 lines
760 B
HTML
24 lines
760 B
HTML
{# GET /admin/tables/columns — crate::pages::admin::table_definition::ui::ColumnsPage #}
|
|
{% extends "ui/base.html" %}
|
|
|
|
{% block title %}{{ nav.tr("td-columns-title") }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<main>
|
|
{% include "pages/admin/table_definition/context.html" %}
|
|
|
|
{#
|
|
One swap target for the page's body. Both writes answer with this markup
|
|
re-read from the backend, so the screen after a change is the definition
|
|
as it now is, not the form that was submitted.
|
|
#}
|
|
<div id="table-panel" aria-live="polite">
|
|
{% include "pages/admin/table_definition/columns_panel.html" %}
|
|
</div>
|
|
</main>
|
|
|
|
<datalist id="currency-codes">
|
|
{% for code in currency_codes %}<option value="{{ code }}"></option>{% endfor %}
|
|
</datalist>
|
|
{% endblock %}
|