table_structure_header.twig 763 B

123456789101112131415161718192021
  1. <thead>
  2. <tr>
  3. <th class="print_ignore"></th>
  4. <th>#</th>
  5. <th>{% trans 'Name' %}</th>
  6. <th>{% trans 'Type' %}</th>
  7. <th>{% trans 'Collation' %}</th>
  8. <th>{% trans 'Attributes' %}</th>
  9. <th>{% trans 'Null' %}</th>
  10. <th>{% trans 'Default' %}</th>
  11. {% if show_column_comments -%}
  12. <th>{% trans 'Comments' %}</th>
  13. {%- endif %}
  14. <th>{% trans 'Extra' %}</th>
  15. {# @see tbl_structure.js, function moreOptsMenuResize() #}
  16. {% if not db_is_system_schema and not tbl_is_view %}
  17. <th colspan="{{ Util_showIcons('ActionLinksMode') ? '8' : '9' -}}
  18. " class="action print_ignore">{% trans 'Action' %}</th>
  19. {% endif %}
  20. </tr>
  21. </thead>