Skip to content

Commit

Permalink
Fix command used and parameters elements. Increase print width and he…
Browse files Browse the repository at this point in the history
…ight to 100%
  • Loading branch information
Snicker7 committed Feb 13, 2023
1 parent dcf7391 commit 13f7ae2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions templates/report.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,7 @@
@media only screen and (max-width: 600px) {
.jumbotron img {
width:100%
}
}

@media screen
{
.print-only{
display: none !important;
Expand Down Expand Up @@ -64,6 +61,8 @@
.print-only, .print-only *
{
display: block;
width: 100%;
height: 100%;
}
.screen-only, .screen-only *
{
Expand Down
4 changes: 2 additions & 2 deletions templates/shared/partials/log_params.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
{% if report_data['run_data']['running_info']['args']['guide_seq'] != '' %}
<p>Guide sequence: {{report_data['run_data']['running_info']['args']['guide_seq']}}</p>
{% endif %}
<p>Command used: {{report_data['command_used']}}</p>
<p>Parameters: {{report_data['params']}}</p>
<p>Command used: {{report_data['run_data']['running_info']['command_used']}}</p>
<p>Parameters: {{report_data['run_data']['running_info']['args_string']}}</p>
<p class='text-center m-0'><small><a href="{{report_data['crispresso_data_path']}}{{report_data['run_data']['running_info']['log_filename']}}">Running log</a></small></p>
</div>

0 comments on commit 13f7ae2

Please sign in to comment.