{% extends "_common/base.html" %} {% block css %} {% load avatar_tags %} {% load day_util %} {% load page_tag %} {% endblock %} {% block container %}

动态

{% for item in articles_new %} {% if item.status == 1 %} {% if item.type == 1 and item.is_top%}
{{ item.created_time | days_until }}
{{ item.user__first_name }}{{ item.user__last_name }} 发布了{{ item.category__name }}:{{ item.title }} {% if is_login %} {% endif %}
{{ item.intro }}    Tags: {% for tag in item.tags %} {{ tag }} {% endfor %}
{% elif item.type == 2 and item.is_top %}
{{ item.created_time | days_until }}
{{ item.user__first_name }}{{ item.user__last_name }} 发布了{{ item.category__name }}:{{ item.title }} {% if is_login %} {% endif %}
{% if ' {{ item.intro }}
{% endautoescape %} {% else %} {% autoescape off %}
{{ item.html_text }}
{% endautoescape %} {% endif %}
{% endif %} {% endif %} {% endfor %} {% if is_login %}

发布动态

{% csrf_token %}
发布
{% endif %}

搜索

归档

{% for record in records %} {{ record.datetime }} ({{ record.count }}) {% endfor %}

Top

{% for tag in tags %} {{ tag.name }} ({{ tag.count }}) {% endfor %}
{% endblock %} {% block js %} {% if is_login %} {% endif %} {% endblock %} {% load static %}