{% 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 }}
{% csrf_token %} {% if form.errors.recipient %}
{{ form.errors.recipient.0 }}
{% endif %}
Post shared with: {% for user in post.shared_with.all %} {{ user|display_name }} {% endfor %}
{% endblock content %} {% block scripts %} {% include "apps/dashboard/_partials/_scripts.html" %} {% endblock scripts %}