|
a/Allura/allura/templates/jinja_master/lib.html |
|
b/Allura/allura/templates/jinja_master/lib.html |
1 |
{% macro related_artifacts(artifact) -%}
|
1 |
{% macro related_artifacts(artifact) -%}
|
2 |
{% set related_artifacts = artifact.related_artifacts() %}
|
2 |
{% set related_artifacts = artifact.related_artifacts() %}
|
3 |
{% if related_artifacts %}
|
3 |
{% if related_artifacts %}
|
4 |
<h4>Related</h4>
|
4 |
<h4>Related</h4>
|
5 |
<p>
|
5 |
<p>
|
6 |
{% for related in artifact.related_artifacts() %}
|
6 |
{% for related in related_artifacts %}
|
7 |
<a href="{{related.url()}}">{{related.type_s}}: {{related.link_text()}}</a><br>
|
7 |
<a href="{{related.url()}}">{{related.type_s}}: {{related.link_text()}}</a><br>
|
8 |
{% endfor %}
|
8 |
{% endfor %}
|
9 |
</p>
|
9 |
</p>
|
10 |
{% endif %}
|
10 |
{% endif %}
|
11 |
{%- endmacro %}
|
11 |
{%- endmacro %}
|