{% if doc.crawl_last %}
- Last crawled on {{ doc.crawl_last }}
{% else %}
- This page has not been crawled yet
{% endif %}
{% if doc.crawl_next %}
- Next crawl is scheduled for {{ doc.crawl_next }}
{% elif not doc.crawl_last %}
- This page will be crawled when a worker is available
{% else %}
- No crawl is scheduled
{% endif %}
{% if doc.crawl_first %}
- First successfully crawled on {{ doc.crawl_first }}
{% endif %}
{% if doc.mimetype %}
- Mimetype {{ doc.mimetype }}
{% endif %}
{% if doc.crawl_depth is not None %}
- Page depth is {{ doc.crawl_depth }}
{% endif %}
{% if doc.robotstxt_rejected %}
- The crawler was rejected by a robots.txt rule
{% endif %}
- This page follows the policy
{% if 'se.view_crawlpolicy' in perms %}
{{ crawl_policy }}
{% else %}
{{ crawl_policy }}
{% endif %}
{% if other_links %}
{% for link in other_links %}
- {{ link.text }}
{% endfor %}
{% endif %}
{% if 'se.view_document' in perms %}
- Page details
{% endif %}
{% if doc.redirect_url %}
- This page redirects to {{ doc.redirect_url }} · 🌍
{% endif %}
{% if doc.too_many_redirects %}
- Redirection was not followed, because the crawler was redirected too many times
{% endif %}
- Pages linking here
- Links from this page
{% if doc.error %}
Last crawl triggered an error:
{{ doc.error }}
{% endif %}