{% extends 'basepage.html'%} {% block container %}
{% if articleList %} {% for key,value in articleList.items%}

{{key.name}}

{% if value %} {% for articleInfo in value%}
{{articleInfo.summary}}
{{articleInfo.username}}  ┆  {{articleInfo.createtime}}  ┆  阅读({{articleInfo.views}})  ┆  评论({{articleInfo.comments}})  ┆  支持({{articleInfo.goods}})  ┆  反对({{articleInfo.bads}})
{% endfor %} {% endif %}
{% endfor %} {% endif %}
{% if myModules %} {% for module in myModules %} {% with "modules/"|add:module|add:".html" as template%} {% include template %} {% endwith %} {% endfor %} {% else %} {% endif %}
{% endblock %}