{# GET /admin/profiles/history — crate::pages::admin::table_definition::ui::HistoryPage Read-only, so there is nothing here to swap and no panel fragment beside it. A table in the selection narrows the history to that table; the loader is what applies that, by passing its id to the backend. #} {% extends "ui/base.html" %} {% block title %}Rename history{% endblock %} {% block content %}
{% include "pages/admin/table_definition/context.html" %}

Column rename history

{% if page.history.is_empty() %}

No column in {% if page.selection.has_table() %}{{ page.selection.table }}{% else %}this profile{% endif %} has been renamed.

{% else %} {% for entry in page.history %} {% endfor %}
TableWasIsWhen
{{ entry.table_name }} {{ entry.old_column_name }} {{ entry.new_column_name }} {{ entry.created_at }}
{% endif %}
{% endblock %}