{% extends "base-admin.html.twig" %} {% block title %}All markets | {{parent()}} {% endblock %} {% block body %}

All markets

Add
{%for entity in markets%} {%endfor%}
#ID Title Description Column 1 Column 2 Column 3 Column 4 Options
{{entity.id}} {{entity.title}} {%if entity.background is not null%} {%endif%} {{entity.description}} {%if entity.subtitle1 is not null%}
{{entity.subtitle1}}
{%endif%} {%if entity.text1 is not null%}

{{entity.text1 | truncate(75,'...')}}

{%endif%}
{%if entity.subtitle2 is not null%}
{{entity.subtitle2}}
{%endif%} {%if entity.text2 is not null%}

{{entity.text2 | truncate(75,'...')}}

{%endif%}
{%if entity.subtitle1 is not null%}
{{entity.subtitle3}}
{%endif%} {%if entity.text3 is not null%}

{{entity.text3 | truncate(75,'...')}}

{%endif%}
{%if entity.subtitle4 is not null%}
{{entity.subtitle4}}
{%endif%} {%if entity.text4 is not null%}

{{entity.text4 | truncate(75,'...')}}

{%endif%}
Edit
{% endblock %}