summaryrefslogtreecommitdiff
path: root/qutebrowser/html/process.html
blob: 2a024cedffba80e336ef0a7cde9517113141de80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{% extends "styled.html" %}

{% block content %}
<header><h1>Process {{ proc.pid }}: {{ proc.cmd }}</h1></header>

<h2>Info</h2>

<table>
    <tr>
        <td><b>Command</b></td>
        <td><pre>{{ proc }}</pre></td>
    </tr>
    <tr>
        <td><b>Status<b></td>
        <td>{{ proc.outcome }}</td>
    </tr>
</table>

<h2>Standard output</h2>
{% if proc.stdout %}
<pre>{{ proc.stdout }}</pre>
{% else %}
No output.
{% endif %}

<h2>Standard error</h2>
{% if proc.stderr %}
<pre>{{ proc.stderr }}</pre>
{% else %}
No output.
{% endif %}
{% endblock %}