diff --git a/templates/report.html b/templates/report.html index 50e0868b..b3ef054f 100644 --- a/templates/report.html +++ b/templates/report.html @@ -54,47 +54,37 @@
-
-
- -
-
- {% if report_data['report_display_name'] != '' %} -
{{report_data['report_display_name']}}
- {% endif %} -
CRISPResso2 run information
- -
-
-
-
- {{report_data['figures']['htmls']['plot_1a']|safe}} - - {% for (data_label,data_path) in report_data['figures']['datas']['plot_1a'] %} -

Data: {{data_label}}

- {% endfor %} -
-
-

CRISPResso version: {{report_data['run_data']['running_info']['version']}}

-

Run completed: {{report_data['run_data']['running_info']['end_time_string']}}

-

Amplicon sequence:

{{report_data['run_data']['running_info']['args']['amplicon_seq']}}

- {% if report_data['run_data']['running_info']['args']['guide_seq'] != '' %} -

Guide sequence:

{{report_data['run_data']['running_info']['args']['guide_seq']}}

- {% endif %} -

Command used:

{{report_data['run_data']['running_info']['command_used']}}

-

Parameters:

{{report_data['run_data']['running_info']['args_string']}}

-

Running log

-
-
-
-
+
+
+ +
+
+ {% if report_data['report_display_name'] != '' %} +
{{report_data['report_display_name']}}
+ {% endif %} +
CRISPResso2 run information
+ +
+
+
+
+ {{report_data['figures']['htmls']['plot_1a']|safe}} + + {% for (data_label,data_path) in report_data['figures']['datas']['plot_1a'] %} +

Data: {{data_label}}

+ {% endfor %} +
+ {{ render_partial('shared/partials/log_params.html', report_data=report_data) }} +
+
+
diff --git a/templates/shared/partials/log_params.html b/templates/shared/partials/log_params.html new file mode 100644 index 00000000..ad035ae3 --- /dev/null +++ b/templates/shared/partials/log_params.html @@ -0,0 +1,11 @@ +
+

CRISPResso version: {{report_data['run_data']['running_info']['version']}}

+

Run completed: {{report_data['run_data']['running_info']['end_time_string']}}

+

Amplicon sequence:

{{report_data['run_data']['running_info']['args']['amplicon_seq']}}

+ {% if report_data['run_data']['running_info']['args']['guide_seq'] != '' %} +

Guide sequence:

{{report_data['run_data']['running_info']['args']['guide_seq']}}

+ {% endif %} +

Command used:

{{report_data['run_data']['running_info']['command_used']}}

+

Parameters:

{{report_data['run_data']['running_info']['args_string']}}

+

Running log

+