You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 regels
527 B

  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 %}