Skip to content

Commit

Permalink
added resuthtml
Browse files Browse the repository at this point in the history
  • Loading branch information
swissme8888 committed May 2, 2017
1 parent 305ee27 commit 09b9071
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions templates/result.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,20 +45,22 @@ <h2> Results </h2>
</center>

<table style="background-color:rgba(0,0,0,0.15)" border = 1>



<tr>

<th> {{ "# of fllipflops" }} </th>

<td> {{ result["# of fllipflops"] }} </td>

<th> {{ "# of consistencies"}} </th>

<td> {{ result[ "# of consistencies"] }} </td>
{% for i in result %}

<tr>
<th> {{ "sentence" }} </th>
<td> {{ i[0] }} </td>
{% for j in range(len(i[1])) %}
<th> {{ "fllipflops" }} </th>
<td> {{ i[1][j] }} </td>
{% endfor %}
{% for k in range(len(i[2])) %}
<th> {{ "consistencies"}} </th>
<td> {{ i[2][k] }} </td>
{% endfor %}

</tr>
{% endfor %}



Expand Down

0 comments on commit 09b9071

Please # to comment.