{% extends "admin/base_site.html" %} {% load i18n admin_urls static admin_modify %} {% block title %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{{ title }}

任务概览

任务名称:
{{ task.name }}
任务类型:
{{ task.get_task_type_display }}
状态:
{{ task.get_status_display }}
创建时间:
{{ task.created_at|date:"Y-m-d H:i:s" }}
{% if task.started_at %}
开始时间:
{{ task.started_at|date:"Y-m-d H:i:s" }}
{% endif %} {% if task.completed_at %}
完成时间:
{{ task.completed_at|date:"Y-m-d H:i:s" }}
{% endif %} {% if task.get_duration %}
执行时长:
{{ task.duration_display }}
{% endif %}

统计信息

{{ task.total_articles }}
总文章数
{{ task.success_count }}
成功数
{{ task.failed_count }}
失败数
{% if task.total_articles > 0 %}
{% widthratio task.success_count task.total_articles 100 %}%
成功率
{% endif %}
{% if task.keyword %}

任务配置

搜索关键词:
{{ task.keyword }}
目标网站:
{{ task.get_websites_display }}
{% if task.start_date %}
开始日期:
{{ task.start_date }}
{% endif %} {% if task.end_date %}
结束日期:
{{ task.end_date }}
{% endif %}
最大页数:
{{ task.max_pages }}
最大文章数:
{{ task.max_articles }}
{% endif %} {% if task.current_website or task.current_action %}

当前状态

{% if task.current_website %}
当前网站: {{ task.current_website }}
{% endif %} {% if task.current_action %}
当前操作: {{ task.current_action }}
{% endif %} {% if task.status == 'running' %}
{{ task.progress }}%
{% endif %}
{% endif %} {% if task.error_message %}

错误信息

{{ task.error_message }}
{% endif %} {% if task.result_details %}

详细结果

{% for website, result in task.result_details.items %}
{{ website }}:
{% endfor %}
{% endif %}
返回任务列表 {% if task.status == 'completed' %} 查看文章 {% endif %}
{% endblock %}