2022-03-21 21:09:16 +00:00
|
|
|
<div class="blog-box">
|
|
|
|
<h3 class="problem-feed-name">
|
|
|
|
<a href="{{ url('problem_detail', problem.code) }}">
|
|
|
|
{{ problem.name }}
|
|
|
|
</a>
|
|
|
|
</h3>
|
|
|
|
{% with authors=problem.authors.all() %}
|
|
|
|
{% if authors %}
|
|
|
|
<div class="problem-feed-info-entry">
|
|
|
|
<i class="fa fa-pencil-square-o fa-fw"></i>
|
|
|
|
<span class="pi-value">{{ link_users(authors) }}</span>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
|
|
|
{% if true %}
|
|
|
|
<div class="problem-feed-types">
|
|
|
|
<i class="fa fa-tag"></i>
|
|
|
|
{% for type in problem.types_list %}
|
|
|
|
<span class="type-tag">{{ type }}</span>{% if not loop.last %}, {% endif %}
|
2022-04-12 02:18:01 +00:00
|
|
|
{% endfor %}, {{problem.points | int}}
|
2022-03-21 21:09:16 +00:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
<div class='blog-description content-description'>
|
|
|
|
{% cache 86400 'problem_html' problem.id MATH_ENGINE LANGUAGE_CODE %}
|
|
|
|
{{ problem.description|markdown("problem", MATH_ENGINE)|reference|str|safe }}
|
|
|
|
{% endcache %}
|
|
|
|
</div>
|
|
|
|
</div>
|