{% extends "admin/base.html" %} {% block title %}Backlinks · {{ target_title }}{% endblock %} {% block content %}

Backlinks for {{ target_title }}

Same-site {{ target_type }}s and pages whose body links to this {{ target_type }}. {% if target_type == "post" %} Back to post edit. {% else %} Back to page edit. {% endif %}

{% if not rows %}

No inbound links yet. (Sources are indexed when they're saved or published; run bragi internal-links rebuild-backlinks after upgrading to v1.13.0 to backfill existing content.)

{% else %} {% for row in rows %} {% endfor %}
Source Type Slug Status Last updated
{{ row.title or '(untitled)' }} {{ row.source_type }} {{ row.slug }} {{ row.status }} {% if row.updated_at %}{{ row.updated_at.strftime('%Y-%m-%d %H:%M') }}{% endif %}
{% endif %} {% endblock %}