{%- extends "_layout.html" %} {%- block content %}
{{ _('PID') }} | {{ _('Name') }} | {{ _('State') }} | {{ _('Start time') }} | {{ _('Duration') }} | {{ _('Query') }} | {{ get_icon('actions') }} | |||||
---|---|---|---|---|---|---|---|---|---|---|---|
{{ query_data.pid }} | {% if 'query_name' in query_data and query_data.query_name %}{{ query_data.query_name }} | {% else %}--- | {% endif %}{{ query_data.state }} | {% if 'query_start' in query_data and query_data.query_start %}{{ babel_format_datetime(query_data.query_start) }} | {{ babel_format_timedelta(get_datetime_utc(aware = True) - query_data.query_start) }} | {% else %}--- | --- | {% endif %} {% if 'query' in query_data and query_data.query %}
{% highlight 'sql' %}
{{ query_data.query }}
{% endhighlight %}
|
{% else %}
--- | {% endif %} {% if 'query_name' in query_data and query_data.query_name %}{{ macros_page.render_menu_context_actions( query_data, action_menu = context_action_menu_query ) }} | {% else %}--- | {% endif %}