{% extends "base.html" %} {% set active_page = 'dashboard' %} {% block title %}Submit URLs — IndexNow Tool{% endblock %} {% block content %}
Pick a project, choose where the URLs come from, and watch the run live.
{% if not projects %} {% else %}| Run | Project | Endpoint | Source | Sent | Accepted | Failed | Skipped | Invalid | Result | Started |
|---|---|---|---|---|---|---|---|---|---|---|
| #{{ run.id }} | {{ run.project_name }} | {{ run.endpoint }} | {{ run.source_type }} | {{ run.submitted_count }} | {{ run.accepted_count }} | {{ run.failed_count }} | {{ run.skipped_existing_count }} | {{ run.invalid_count }} | {% if run.status == 'running' %}Running {% elif run.status == 'failed' %}Run error {% elif run.status == 'interrupted' %}Interrupted {% elif run.failed_count > 0 and run.accepted_count > 0 %}Partly accepted {% elif run.failed_count > 0 %}Rejected {% elif run.accepted_count > 0 %}Accepted {% elif run.skipped_existing_count > 0 %}All skipped {% else %}Nothing sent{% endif %} | {{ run.created_at }} |
| No runs yet. | ||||||||||