diff options
author | Frederick Muriuki Muriithi | 2022-08-31 04:44:28 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-08-31 04:44:28 +0300 |
commit | ae1fbc0c56c8732fb85b555eccd4fddb5d8e5437 (patch) | |
tree | 97d9e23c50c557e18c7ae0955aed68d5baa130ff /qc_app/templates/stdout_output.html | |
parent | ddad176111e962e8b773d8dd7467e8536ba4e5b4 (diff) | |
download | gn-uploader-ae1fbc0c56c8732fb85b555eccd4fddb5d8e5437.tar.gz |
Commit missing files.
Diffstat (limited to 'qc_app/templates/stdout_output.html')
-rw-r--r-- | qc_app/templates/stdout_output.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/qc_app/templates/stdout_output.html b/qc_app/templates/stdout_output.html new file mode 100644 index 0000000..f3fcde5 --- /dev/null +++ b/qc_app/templates/stdout_output.html @@ -0,0 +1,10 @@ +{%macro stdout_output(job)%} + +<h4>STDOUT Output</h4> +<div class="cli-output"> + {%for line in job.get("stdout", "").split("\n\n"):%} + <p>{{line}}</p> + {%endfor%} +</div> + +{%endmacro%} |