| Server IP : 23.254.227.96 / Your IP : 216.73.216.183 Web Server : Apache/2.4.62 (Unix) OpenSSL/1.1.1k System : Linux hwsrv-1277026.hostwindsdns.com 4.18.0-477.13.1.el8_8.x86_64 #1 SMP Tue May 30 14:53:41 EDT 2023 x86_64 User : viralblo ( 1001) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/local/cwpsrv/var/services/pma/templates/columns_definitions/ |
Upload File : |
{% set title = '' %}
{% if column_meta['column_status'] is defined %}
{% if column_meta['column_status']['isReferenced'] %}
{% set title = title ~ 'Referenced by %s.'|trans|format(
column_meta['column_status']['references']|join(',')
) %}
{% endif %}
{% if column_meta['column_status']['isForeignKey'] %}
{% if title is not empty %}
{% set title = title ~ '\n'|raw %}
{% endif %}
{% set title = title ~ 'Is a foreign key.'|trans %}
{% endif %}
{% endif %}
{% if title is empty %}
{% set title = 'Column'|trans %}
{% endif %}
<input id="field_{{ column_number }}_{{ ci - ci_offset }}"
{% if column_meta['column_status'] is defined
and not column_meta['column_status']['isEditable'] %}
disabled="disabled"
{% endif %}
type="text"
name="field_name[{{ column_number }}]"
maxlength="64"
class="textfield"
title="{{ title }}"
size="10"
value="{{ column_meta['Field'] is defined ? column_meta['Field'] }}">
{% if cfg_relation['centralcolumnswork']
and not (column_meta['column_status'] is defined
and not column_meta['column_status']['isEditable']) %}
<p class="column_name" id="central_columns_{{ column_number }}_{{ ci - ci_offset }}">
<a data-maxrows="{{ max_rows }}"
href="#"
class="central_columns_dialog">
{% trans 'Pick from Central Columns' %}
</a>
</p>
{% endif %}