2022-11-17 21:21:32 +00:00
|
|
|
{% extends "user/user-base.html" %}
|
|
|
|
|
|
|
|
{% block title_ruler %}{% endblock %}
|
|
|
|
|
|
|
|
{% block title_row %}
|
2023-01-27 23:11:10 +00:00
|
|
|
{% set tab = 'bookmark' %}
|
|
|
|
{% include "user/user-tabs.html" %}
|
2022-11-17 21:21:32 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block user_content %}
|
2023-01-27 23:11:10 +00:00
|
|
|
{% if blogs %}
|
2022-11-17 21:21:32 +00:00
|
|
|
<div class="bookmark-group">
|
2023-01-27 23:11:10 +00:00
|
|
|
<h3 class="unselectable toggle closed">
|
|
|
|
<span class="fa fa-chevron-right fa-fw"></span>{{ _('Posts') }} ({{ blogs|length }})
|
|
|
|
</h3>
|
|
|
|
<table style="display: none" class="table toggled">
|
|
|
|
<tbody>
|
|
|
|
{% for post in blogs %}
|
|
|
|
{% if post.bookmark.page_object() %}
|
|
|
|
<tr>
|
|
|
|
<td class="bookmark-name">
|
|
|
|
<a href="{{ url('blog_post', post.bookmark.page_object().id, post.bookmark.page_object().slug) }}">{{ post.bookmark.page_object().title}} </a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2022-11-17 21:21:32 +00:00
|
|
|
</div>
|
2023-01-27 23:11:10 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if problems %}
|
2022-11-17 21:21:32 +00:00
|
|
|
<div class="bookmark-group">
|
2023-01-27 23:11:10 +00:00
|
|
|
<h3 class="unselectable toggle closed">
|
|
|
|
<span class="fa fa-chevron-right fa-fw"></span>{{ _('Problems') }} ({{ problems|length }})
|
|
|
|
</h3>
|
|
|
|
<table style="display: none" class="table toggled">
|
|
|
|
<tbody>
|
|
|
|
{% for problem in problems %}
|
|
|
|
{% if problem.bookmark.page_object() %}
|
|
|
|
<tr>
|
|
|
|
<td class="bookmark-name">
|
|
|
|
<a href="{{ url('problem_detail', problem.bookmark.page_object().code) }}">{{ problem.bookmark.page_object().name}} </a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2022-11-17 21:21:32 +00:00
|
|
|
</div>
|
2023-01-27 23:11:10 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if contests %}
|
2022-11-17 22:11:47 +00:00
|
|
|
<div class="bookmark-group">
|
2023-01-27 23:11:10 +00:00
|
|
|
<h3 class="unselectable toggle closed">
|
|
|
|
<span class="fa fa-chevron-right fa-fw"></span>{{ _('Contests') }} ({{ contests|length }})
|
|
|
|
</h3>
|
|
|
|
<table style="display: none" class="table toggled">
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for contest in contests %}
|
|
|
|
{% if contest.bookmark.page_object() %}
|
|
|
|
<tr>
|
|
|
|
<td class="bookmark-name">
|
|
|
|
<a href="{{ url('contest_view', contest.bookmark.page_object().key) }}">{{ contest.bookmark.page_object().name}} </a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2022-11-17 22:11:47 +00:00
|
|
|
</div>
|
2023-01-27 23:11:10 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if solutions %}
|
|
|
|
<div class="bookmark-group">
|
|
|
|
<h3 class="unselectable toggle closed">
|
|
|
|
<span class="fa fa-chevron-right fa-fw"></span>{{ _('Editorials') }} ({{ solutions|length }})
|
|
|
|
</h3>
|
|
|
|
<table style="display: none" class="table toggled">
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for solution in solutions %}
|
|
|
|
{% if solution.bookmark.page_object() %}
|
|
|
|
<tr>
|
|
|
|
<td class="bookmark-name">
|
|
|
|
<a href="{{ url('problem_editorial', solution.bookmark.page_object().problem.code) }}">{{ solution.bookmark.page_object().problem.name}} </a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2022-11-17 21:21:32 +00:00
|
|
|
|
|
|
|
{% endblock %}
|