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.
18 lines
555 B
18 lines
555 B
<div class="outgoing_msg">
|
|
<div class="sent_msg">
|
|
<span class="time_date"> {% if message.fecha %} {{ message.fecha|format_datetime(locale=app.request.getLocale()) }} {% endif %}</span>
|
|
<p>
|
|
{% set lastarray=message.mensaje|raw|split('<br>')%}
|
|
{% for element in lastarray %}
|
|
{%if 'href' in element%}
|
|
{{ element|replace({(element|raw|striptags): element|raw|striptags|trans({})})|raw }}
|
|
{%else%}
|
|
|
|
{{ element|raw|striptags|trans({})}}
|
|
{% endif%}
|
|
{% endfor%}
|
|
|
|
|
|
</p>
|
|
</div>
|
|
</div>
|