comment_for_row.twig 527 B

12345678910
  1. {% if comments_map[fields_meta.table] is defined
  2. and comments_map[fields_meta.table][fields_meta.name] is defined %}
  3. <span class="tblcomment" title="{{ comments_map[fields_meta.table][fields_meta.name] }}">
  4. {% if comments_map[fields_meta.table][fields_meta.name]|length > limit_chars %}
  5. {{ comments_map[fields_meta.table][fields_meta.name]|slice(0, limit_chars) }}…
  6. {% else %}
  7. {{ comments_map[fields_meta.table][fields_meta.name] }}
  8. {% endif %}
  9. </span>
  10. {% endif %}