{% extends "admin/base_site.html" %} {% load i18n static %} {% block extrastyle %}{{ block.super }}{% endblock %} {% block coltype %}colMS{% endblock %} {% block bodyclass %}{{ block.super }} dashboard{% endblock %} {% block breadcrumbs %}{% endblock %} {% block nav-sidebar %}{% endblock %} {% block content %}
{% if app_list %} {% for app in app_list %}
{% for model in app.models %} {% if model.admin_url %} {% else %} {% endif %} {% if model.add_url %} {% else %} {% endif %} {% if model.admin_url %} {% if model.view_only %} {% else %} {% endif %} {% else %} {% endif %} {% endfor %}
{{ app.name }}
{{ model.name }}{{ model.name }}{% translate 'Add' %} {% translate 'View' %}{% translate 'Change' %} 
{% endfor %} {% else %}

{% translate "You don't have permission to view or edit anything." %}

{% endif %}

快速创建爬取任务

关键词搜索

根据关键词搜索并爬取相关文章

创建任务

历史文章

爬取指定日期范围的历史文章

创建任务

全站爬取

爬取整个网站的所有文章

创建任务

最近任务状态

{% load core_extras %} {% get_recent_tasks as recent_tasks %} {% if recent_tasks %} {% for task in recent_tasks %} {% endfor %}
任务名称 类型 状态 进度 创建时间 操作
{{ task.name }} {{ task.get_task_type_display }} {{ task.get_status_display }} {% if task.status == 'running' %}
{{ task.progress }}%
{% else %} - {% endif %}
{{ task.created_at|date:"m-d H:i" }} 查看
{% else %}

暂无任务

{% endif %}
{% endblock %} {% block sidebar %} {% endblock %}