2022-07-21 16:15:47 +02:00
|
|
|
{% extends "base.html.twig" %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
{% if app.user %}
|
2022-07-25 17:16:08 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col col-md6">
|
|
|
|
<h3>Chat #1</h3>
|
|
|
|
{{ render(path("app_publish_sample",{id:1})) }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col col-md6">
|
|
|
|
<h3>Chat #2</h3>
|
|
|
|
{{ render(path("app_publish_sample",{id:2})) }}
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-07-21 16:15:47 +02:00
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|