{% extends 'templates/main.volt' %} {% block content %} {{ partial('macros/article') }} {% set owner_url = url({'for':'home.user.show','id':article.owner.id}) %}
审核内容
{{ article.title }}
{{ source_type(article.source_type) }} {{ article.owner.name }} {{ date('Y-m-d H:i:s',article.create_time) }}
{{ article.content }}
{% if article.tags %}
{% for item in article.tags %} {{ item.name }} {% endfor %}
{% endif %} {% if article.source_url %}
查看原文
{% endif %}
审核意见
{% set moderate_url = url({'for':'admin.article.moderate','id':article.id}) %}
{% endblock %} {% block link_css %} {{ css_link('home/css/content.css') }} {% endblock %} {% block inline_js %} {% endblock %}