This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
1 |
<!doctype html> |
2 |
{% if flag == '1' %} |
3 |
{% for obj in content %} |
4 |
<div class="well"> |
5 |
{% for key in content[obj].keys() %} |
6 |
{% if key == "where" or key == "xpath" %} |
7 |
<p><b>{{ key }}</b>:<a href="#"> {{ content[obj][key] }}</a></p> |
8 |
{% else %} |
9 |
<p><b>{{ key }}</b>: {{ content[obj][key] }}</p> |
10 |
{% endif %} |
11 |
{% endfor %} |
12 |
</div> |
13 |
{% endfor %} |
14 |
{% else %} |
15 |
{% for obj in content %} |
16 |
<div class="well"> |
17 |
{% for key in content[obj].keys() %} |
18 |
<p><b>{{ key }}</b>: {{ content[obj][key] }}</p> |
19 |
{% endfor %} |
20 |
</div> |
21 |
{% endfor %} |
22 |
{% endif %} |