diff options
author | ficus <ficus@robocracy.org> | 2012-09-15 19:46:49 +0200 |
---|---|---|
committer | ficus <ficus@robocracy.org> | 2012-09-15 19:46:49 +0200 |
commit | 42725426ec02d359b67cd8d665afe17882d38958 (patch) | |
tree | 148c4082998f7d0b82ec4f22515d7626fca6a0e7 /templates/processes.html | |
parent | a304d7a56563b16ca98d9b45ebed521c52f6347c (diff) | |
download | tui-42725426ec02d359b67cd8d665afe17882d38958.tar.gz tui-42725426ec02d359b67cd8d665afe17882d38958.zip |
more WIP
Diffstat (limited to 'templates/processes.html')
-rw-r--r-- | templates/processes.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/processes.html b/templates/processes.html index c911b0a..2e35162 100644 --- a/templates/processes.html +++ b/templates/processes.html @@ -8,12 +8,12 @@ <th>PID <th>%CPU <th>%MEM - <th>Status Code + <th>Status <th>Started <th>Time <th>Command {% for proc in process_list %} - <tr> + <tr style="font-family: monospace;"> <td>{{ proc.user }} <td>{{ proc.pid}} <td>{{ proc.perc_cpu }} @@ -21,7 +21,7 @@ <td>{{ proc.status_code }} <td>{{ proc.started }} <td>{{ proc.time }} - <td>{{ proc.command }} + <td><div style="height: 1.5em; overflow:hidden;">{{ proc.command }}</div> {% endfor %} </table> |