diff --git a/templates/default/home.html.twig b/templates/default/home.html.twig index 8a317f3..0f9fb75 100644 --- a/templates/default/home.html.twig +++ b/templates/default/home.html.twig @@ -48,8 +48,8 @@ - {% for n in app.user.notes %} - {{ n.toTableRow() | raw }}
+ {% for n in app.user.notes|reverse %} + {{ n.toTableRow()|raw }}
{% endfor %} diff --git a/templates/default/sidebar.html.twig b/templates/default/sidebar.html.twig index 8d93905..0758d14 100644 --- a/templates/default/sidebar.html.twig +++ b/templates/default/sidebar.html.twig @@ -5,7 +5,7 @@ {% if app.user %} {% endif %} @@ -15,9 +15,7 @@

Menu

{% if app.user %}

Welcome {{ app.user.name }}

- + Logout {% endif %}