{% extends "base.html" %} {% block title %}Wikidata Query Service report{% endblock %} {% block content %}

{{ self.title() }}

This report lists every query sent to the Wikidata Query Service (WQDS) by WADE. Failed queries are in red.

endpoint
template
when
rows
time
{% for obj in q %}
{{ obj.endpoint or '' }}
{{ obj.template or '' }}
{{ obj.start_time.strftime('%Y %b %d %H:%M') }}
{% if obj.row_count is not none %} {{ obj.row_count }} {% elif obj.bad %} error {% endif %}
{% if obj.end_time %} {{ obj.display_seconds }} seconds {% else %} running {% endif %}
view SPARQL | {% if obj.bad %} view error | {% endif %} view in WDQS
{{ obj.page_title or '' }}
{{ obj.sparql_query }}
{% if obj.status_code != 200 %}
status code: {{ obj.status_code }}
{{ obj.error_text }}
{% endif %}
{% endfor %}
{% endblock %} {% block script %} {% endblock %}