{% 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.

template
when
time
options
{% for obj in q %} {% if obj.status_code and obj.status_code != 200 %}{% set class=" text-light bg-danger"%}{% endif %}
{{ obj.template or '' }}
{{ obj.start_time.strftime('%Y %b %d %H:%M') }}
{% if obj.end_time %} {{ obj.display_seconds }} seconds {% else %} running {% endif %}
{{ obj.sparql_query }}
{% if obj.status_code != 200 %}
status code: {{ obj.status_code }}
{{ obj.error_text }}
{% endif %}
{% endfor %}
{% endblock %} {% block script %} {% endblock %}