{% extends "core/base.html" %} {% load lyric_extras %} {% block title_text %}Dashpost{% endblock title_text %} {% block header_text %}Dashpost{% endblock header_text %} {% block extra_header %} {% url "billboard:view_post" post.id as form_action %} {% include "apps/dashboard/_partials/_form.html" with form=form form_action=form_action %} {% endblock extra_header %} {% block content %}
Post created by: {{ post.owner|display_name }} {% for line in post.lines.all %} {% endfor %}
{{ forloop.counter }}. {{ line.text }}
Post shared with: {% for user in post.shared_with.all %} {{ user|display_name }} {% endfor %}
{# 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 %}