{% extends 'base.html' %} {% block content %} {% for toot in toots recursive%}
{% if toot.spoiler_text != "" %} CW: {{toot.spoiler_text|safe}} {% endif %} {{ toot.content|safe }}
{% if toot.medias %} {% for media in toot.medias%} {% if media.type == 'image' %} {% elif media.type in ['gifv','video','audio'] %}
{% endif %} {% endfor%} {% endif %}
{% if toot.replies_count > 1 %} {{ toot.replies_count }} {% else %} {{ toot.replies_count }} {% endif %} {% if toot.reblogged %} {{ toot.reblogs_count}} {% else %} {{ toot.reblogs_count}} {% endif %} {% if toot.favourited %} {{ toot.favourites_count }} {% else %} {{ toot.favourites_count }} {% endif %} {% if toot.bookmarked %} {% else %} {% endif %}
{% if toot.is_myself %} 抓取回复 {% endif %} 上下文
{%- if toot.reply -%}
{{ loop(toot.reply) }}
{%- endif %} {% endfor %} {% endif %} {% endblock %}