We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0cebd56 + d35bac5 commit ddbf28eCopy full SHA for ddbf28e
app/templates/example_info.html
@@ -15,12 +15,18 @@ <h4>{{ title }}</h4>
15
{% else %}
16
{{ session["manifest"]["SupportingTexts"]["APIMethodUsed"] | safe }}
17
{% endif %}
18
-
+
19
{% for link in example["LinksToAPIMethod"] -%}
20
<a target='_blank' href="{{ link['Path'] }}">{{ link['PathName'] }}</a>
21
{% endfor %}
22
23
24
+{% if example["LinkToHowTo"] | length > 0%}
25
+ <p>
26
+ Prerequisite: See <a target='_blank' href="{{ example['LinkToHowTo'][0]['Path'] }}">{{ example['LinkToHowTo'][0]['PathName'] }}</a>.
27
+ </p>
28
+{% endif %}
29
30
<p>
31
View source file <a target="_blank" href="{{ source_url | safe }}">{{ source_file }}</a> on GitHub.
-</p>
32
+</p>
0 commit comments