{% extends 'members/member/dashboard.html.twig' %} {% block stylesheets %} {{ parent() }} #content-layout { width:100%; min-height: 800px; display-flex; flex-direction:column; justify-content: flex-start; } #content-layout ul { list-style-type: none; display: flex; flex-direction: column; width: 98%; border: solid 1px; border-radius: 20px; box-shadow: 5px 8px 20px rgba(0,0, 0, 0.7); } #content-layout ul li label { font-weight: bold; } #content-layout a { width: 100%; display: flex; flex-direction: row; justify-content: flex-start; margin: 20px; padding-left: 40px; } .grey { background-color: #e0e0e0; } .white { background-color: white; } {% endblock %} {% block main_content %} {% block tab_bar %} {{ parent() }} {% endblock %}
{% block content %}

{{ thread.purpose }}

{% for message in messages %} {% set class = 'grey' %} {% if message.sender.username != app.user %} {% set class = 'white' %} {% endif %} {% endfor %} {% endblock %}
{% endblock %} {% block javascript %} {{ parent() }} {% endblock %}