{% extends 'core/base.html' %} {% block content %}

公开内容

{% if user.is_authenticated %}
添加内容
{% endif %}
{% if content_by_type %} {% for type_name, contents in content_by_type.items %}
{{ type_name }}
{{ contents|length }} 项
{% for content in contents %}
{% if content.url %} {{ content.title }} {% else %} {{ content.title }} {% endif %}
{% if content.content %}

{{ content.content|truncatechars:200 }}

{% endif %} {% if content.file %} 下载文件 {% endif %}
{% if user.is_authenticated %} {% endif %}
{% endfor %}
{% endfor %} {% else %}
暂无公开内容

请稍后再来查看

{% if user.is_authenticated %} 添加内容 {% endif %}
{% endif %} {% endblock %}