10b1159 by Arvind at 2013-07-10 1
<!doctype html>
2
{% if flag == '1' %}
1b6cb0a by Arvind at 2013-03-30 3
{% for obj in content %}
3a2f834 by Anon Ray at 2013-07-09 4
<div class="well">
10b1159 by Arvind at 2013-07-10 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>
1b6cb0a by Arvind at 2013-03-30 13
{% endfor %}
10b1159 by Arvind at 2013-07-10 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 %}
1b6cb0a by Arvind at 2013-03-30 20
</div>
21
{% endfor %}
10b1159 by Arvind at 2013-07-10 22
{% endif %}