{% extends 'base.html' %} {% block body %} {% include 'navbar.html' %} {% include 'likes-modal.html' %} {% if session['login'] %}
{% with messages = get_flashed_messages() %} {% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% endwith %} {{ form.csrf_token }} {{ form.wpis(placeholder="Treść",class_="form-control bg-dark text-white",rows="4") }}
{% endif %}
IVshop.pl {% if request.url_rule.endpoint == 'index_blueprint.index' or request.url_rule.endpoint == 'populary_posts_blueprint.populary' %} {% endif %} {% if request.url_rule.endpoint == 'follows_blueprint.tag' %}

#{{ tag }}

Obserwujący: {{ tag_followers }}

{% if session['login'] %}
{% for trow in follows if trow.tag|lower == tag|lower and trow.user == session['login'] %} {% else %} {% endfor %}
{% endif %} {% endif %} {% for row in posts %} {% include 'wpis.html' %} {% endfor %}
{% endblock %}