- Minor adjustment made

This commit is contained in:
Dave M. 2023-09-19 23:51:49 -04:00
parent fbfbd48eb8
commit 7ec6aa3f06
3 changed files with 6 additions and 4 deletions

View File

@ -10,7 +10,6 @@
"host": "Hostname:port", "host": "Hostname:port",
"username": "Username", "username": "Username",
"connection": "Connection", "connection": "Connection",
"table": { "table": {
"header": "Tables details", "header": "Tables details",
"fields": "{$count} fields", "fields": "{$count} fields",
@ -21,7 +20,8 @@
"createAll": "Create all tables", "createAll": "Create all tables",
"query": "SQL Query", "query": "SQL Query",
"alter": "Alter table", "alter": "Alter table",
"alterAll": "Alter all tables" "alterAll": "Alter all tables",
"uptodate": "This table is up-to-date"
} }
} }

View File

@ -9,5 +9,7 @@
{% endsection %} {% endsection %}
{% section "content" %} {% section "content" %}
<section>
<article>Welcome into your Lean Console section. Select the appropriate menu item from the sidebar.</article>
</section>
{% endsection %} {% endsection %}

View File

@ -54,7 +54,7 @@
{% if $context->definition[$entity]['table']->modifier->query %} {% if $context->definition[$entity]['table']->modifier->query %}
<code>{{= implode('<br><br>',(array) $context->definition[$entity]['table']->modifier->query) }}</code> <code>{{= implode('<br><br>',(array) $context->definition[$entity]['table']->modifier->query) }}</code>
{% else %} {% else %}
<div>🗸 This table is up-to-date</div> <div style="color:#abecab">&#x2713 {% _ 'database.table.uptodate' %}</div>
{% endif %} {% endif %}
</div> </div>