{% extends 'news/base.html' %}
{% block title %}
{{link.text}} - related - {{block.super}}
{% endblock %}
{% block contents %}
{% include 'news/link_row.html' %}
{% include 'news/link_details_menu.html' %}
{% if related %}
{% for obj in related %}
{% include 'news/link_row_related.html' %}
{% endfor %}
{% else %}
We have not yet found anything related to this story. Might be if you checked back later?
{% endif %}