forked from pinellolab/CRISPResso2
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding styling for print-only and screen only
- Loading branch information
Showing
3 changed files
with
86 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,23 @@ | ||
<div class="tab-pane fade text-start" id="log_params" role="tabpanel"> | ||
<div class="tab-pane fade text-start screen-only" id="log_params" role="tabpanel"> | ||
<p>CRISPResso version: {{report_data['run_data']['running_info']['version']}}</p> | ||
<p>Run completed: {{report_data['run_data']['running_info']['end_time_string']}}</p> | ||
<p>Amplicon sequence: <pre class='pre-scrollable'>{{report_data['run_data']['running_info']['args']['amplicon_seq']}}</pre></p> | ||
{% if report_data['run_data']['running_info']['args']['guide_seq'] != '' %} | ||
<p>Guide sequence: <pre class='pre-scrollable'>{{report_data['run_data']['running_info']['args']['guide_seq']}}</pre></p> | ||
<p>Guide sequence: <pre class='pre-scrollable'>{{report_data['run_data']['running_info']['args']['guide_seq']}}</pre></p> | ||
{% endif %} | ||
<p>Command used: <pre class='pre-scrollable'>{{report_data['run_data']['running_info']['command_used']}}</pre></p> | ||
<p>Parameters: <pre class='pre-scrollable'>{{report_data['run_data']['running_info']['args_string']}}</pre></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> | ||
|
||
<div class="tab-pane fade text-left print-only" id="log_params" role="tabpanel"> | ||
<p>CRISPResso version: {{report_data['run_data']['running_info']['version']}}</p> | ||
<p>Run completed: {{report_data['run_data']['running_info']['end_time_string']}}</p> | ||
<p>Amplicon sequence: {{report_data['run_data']['running_info']['args']['amplicon_seq']}}</p> | ||
{% 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 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> |