Skip to content

Commit

Permalink
fix spacnig in main
Browse files Browse the repository at this point in the history
  • Loading branch information
aineniamh committed Oct 4, 2023
1 parent c7784a5 commit 886ce31
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions piranha/data/report.mako
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@
<hr>
</header>

<h1>${LANGUAGE_CONFIG["4"]} ${run_name}<small class="text-muted" style="color:${themeColor}">${date}</small></h1>
<h1>${LANGUAGE_CONFIG["4"]} ${run_name} <small class="text-muted" style="color:${themeColor}">${date}</small></h1>
%if config["username"]!="":
<h3><strong>${LANGUAGE_CONFIG["5"]}</strong> | ${config["username"].lstrip("'").rstrip("'")}</h3>
%endif
Expand Down Expand Up @@ -622,7 +622,8 @@
<table class="display nowrap" id="myTable1">
<thead>
<tr>
%for col in ${LANGUAGE_CONFIG["14"]}:
<% header = LANGUAGE_CONFIG["14"] %>
%for col in header:
<th>${col.title().replace("_"," ")}</th>
%endfor
<th>${LANGUAGE_CONFIG["15"]} (${config["analysis_mode"].upper()})</th>
Expand Down Expand Up @@ -748,7 +749,7 @@
<thead>
<tr>
<th style="width:30%;">${LANGUAGE_CONFIG["21"]}</th>
<th style="width:70%;">S${LANGUAGE_CONFIG["22"]}</th>
<th style="width:70%;">${LANGUAGE_CONFIG["22"]}</th>
</tr>
</thead>
<tbody>
Expand Down

0 comments on commit 886ce31

Please sign in to comment.