{% extends "user/user-base.html" %} {% block title_ruler %}{% endblock %} {% block title_row %} {% set tab = 'bookmark' %} {% include "user/user-tabs.html" %} {% endblock %} {% block user_content %} {% if postlist %}

{{ _('Bookmarked Posts') }} ({{ postlist|length }})

{% for post in postlist %} {% endfor %}
{% else %} {{ _('You have not yet bookmarked any post.') }} {% endif %}
{% if problemlist %}

{{ _('Bookmarked Problems') }} ({{ problemlist|length }})

{% for problem in problemlist %} {% endfor %}
{% else %} {{ _('You have not yet bookmarked any problem.') }} {% endif %}
{% if contestlist %}

{{ _('Bookmarked Contests') }} ({{ contestlist|length }})

{% for contest in contestlist %} {% endfor %}
{% else %} {{ _('You have not yet bookmarked any contest.') }} {% endif %}
{% endblock %}