{% extends 'base.html' %} {% block body %} {{ super() }} {% include 'navbar.html' %} {% include 'likes-modal.html' %}

{{ nick }}

{% if description %}

Opis:

{{ description }}

{% endif %}

{{countPosts}}


{% if countPosts == 0 %}napisanych wpisów{% elif countPosts == 1 %}napisany wpis{% elif countPosts <= 4 %}napisane wpisy{% elif countPosts >= 5 %}napisanych wpisów{% endif %}

{{countComments}}


{% if countComments == 0 %}napisanych komentarzy{% elif countComments == 1 %}napisany komentarz{% elif countComments <= 4 %}napisane komentarze{% elif countComments >= 5 %}napisanych komentarzy{% endif %}
{% if session['login'] and nick != session['login'] %}
{% endif %} {% for row in posts %} {% include 'wpis.html' %} {% endfor %}
{% endblock %}