{% extends "core/base.html" %} {% load lyric_extras %} {% block title_text %}Dashpost{% endblock title_text %} {% block header_text %}Dashpost{% endblock header_text %} {% block content %} {# Hidden owner span — preserves the existing FT contract that reads the #} {# post owner via #id_post_owner. Visible owner attribution moved into the #} {# self line ("just me, …" / "& me, …") below. #}

{{ post.title }}

{% with recipients=post.shared_with.all %} {% if recipients %}

shared between {% for r in recipients %}{{ r|display_name }}{% if not forloop.last %}, {% endif %}{% endfor %}

& me, {{ post.owner|display_name }} the {{ post.owner.active_title_display }}

{% else %}

just me, {{ post.owner|display_name }} the {{ post.owner.active_title_display }}

{% endif %} {% endwith %}
{% csrf_token %} {% if form.errors %}
{{ form.errors.text.0 }}
{% endif %}
{# Buddy btn (bottom-left) + slide-out recipient field — async share. #} {% include "apps/billboard/_partials/_buddy_panel.html" %}
{% endblock content %} {% block scripts %} {% include "apps/dashboard/_partials/_scripts.html" %} {% endblock scripts %}