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 |
<body> |
3 |
{% if flag == '1' %} |
4 |
{% for obj in content %} |
5 |
<div class="well"> |
6 |
{% for key in content[obj].keys() %} |
7 |
{% if key == "where" or key == "xpath" %} |
8 |
<p><b>{{ key }}</b>:<a href="#"> {{ content[obj][key] }}</a></p> |
9 |
{% else %} |
10 |
<p><b>{{ key }}</b>: {{ content[obj][key] }}</p> |
11 |
{% endif %} |
12 |
{% endfor %} |
13 |
</div> |
14 |
{% endfor %} |
15 |
{% else %} |
16 |
{% for obj in content %} |
17 |
<div class="well"> |
18 |
{% for key in content[obj].keys() %} |
19 |
<p><b>{{ key }}</b>: {{ content[obj][key] }}</p> |
20 |
{% endfor %} |
21 |
</div> |
22 |
{% endfor %} |
23 |
{% endif %} |
24 |
</body> |
25 |
</html> |