{% extends "base.html" %} {% block title_row %}{% endblock %} {% block title_ruler %}{% endblock %} {% block media %} {% include "blog/media-css.html" %} {% endblock %} {% block js_media %} {% endblock %} {% block body %} {% block before_posts %}{% endblock %}
{% set show_organization_private_icon=True %} {% if feed_type == 'blog' %} {% for post in posts %} {% include "blog/content.html" %} {% endfor %} {% elif feed_type == 'problem' %} {% for problem in problems %} {% include "problem/feed.html" %} {% endfor %} {% elif feed_type == 'ticket' %} {% if tickets %} {% for ticket in tickets %} {% include "ticket/feed.html" %} {% endfor %} {% else %}

{{_('You have no ticket')}}

{% endif %} {% elif feed_type == 'comment' %} {% for comment in comments %} {% include "comments/feed.html" %} {% endfor %} {% endif %} {% if page_obj.num_pages > 1 %}
{% include "list-pages.html" %}
{% endif %}
{% if request.in_contest_mode and request.participation.contest.use_clarifications %} {% endif %} {% if current_contests %} {% endif %} {% if future_contests %} {% endif %}
{% block after_posts %}{% endblock %} {% endblock %} {% block bodyend %} {{ super() }} {% if REQUIRE_JAX %} {% include "mathjax-load.html" %} {% endif %} {% include "comments/math.html" %} {% endblock %}