{% extends 'base/layout.html' %} {% load i18n %} {% block title %}{% trans "Edit Link" %}{% endblock %} {% block content %}

{% trans "Edit Link" %}

{% trans "Back" %}
{% trans "Link" %}
{% trans "Object A" %}
{% if link.object_a and link.object_a.get_absolute_url %} {{ link.object_a }} {% else %} {{ link.object_a|default:"–" }} {% endif %}
{% trans "Object B" %}
{% if link.object_b and link.object_b.get_absolute_url %} {{ link.object_b }} {% else %} {{ link.object_b|default:"–" }} {% endif %}
{% endblock %}