{% extends 'base.html.twig' %} {% import '_sidebar_tables.html.twig' as macros %} {% block title %}{{ tableName }} — Query · Jormun Admin{% endblock %} {% block breadcrumbs %} Home / {{ tableName }} / Query {% endblock %} {% block sidebar_tables %} {{ macros.sidebar_table_links(tables, tableName) }} {% endblock %} {% block content %}
| {{ col }} {% if keySchema.HASH is defined and keySchema.HASH.name == col %} PK {% endif %} {% if keySchema.RANGE is defined and keySchema.RANGE.name == col %} SK {% endif %} | {% endfor %}
|---|
| {% if item[col] is defined %} {% set val = item[col] %} {% if val is iterable %} {{ val|json_encode|slice(0, 50) }}{% if val|json_encode|length > 50 %}…{% endif %} {% else %} {{ val|e|slice(0, 60) }}{% if (val|e|length) > 60 %}…{% endif %} {% endif %} {% else %} NULL {% endif %} | {% endfor %}