{% extends "layout.html" %} {% block title_name %} - {{ _('model')|uc_first }}{% endblock %} {% block breadcrumb %} {{ [_('model')]|crumb }} {% endblock %} {% block content %}
{{ _('browse')|uc_first }}: {{ _('classes')|uc_first }}, {{ _('properties')|uc_first }}
{{ _('check for valid links')|uc_first }}
{% if test_result %}{{ _('result for')|uc_first }} {{ test_result['domain']|link|safe }} > {{ test_result['property']|link|safe }} > {{ test_result['range']|link|safe }}
{% if not test_result['domain_error'] and not test_result['range_error'] %}{{ _('valid link')|uc_first }}
{% endif %}
{% if test_result['domain_error'] %}
{{ _('wrong domain')|uc_first }} {{ test_result['domain']|link|safe }} {{ _('for') }} {{ test_result['property']|link|safe }}
{% endif %} {% if test_result['range_error'] %}{{ _('wrong range')|uc_first }} {{ test_result['range']|link|safe }} {{ _('for') }} {{ test_result['property']|link|safe }}
{% endif %} {% endif %}