{% extends "core/base.html" %} {% load lyric_extras %} {% block title_text %}Billposts{% endblock title_text %} {% block header_text %}Billposts{% endblock header_text %} {% block content %} {# Two applet-scroll sections — own posts + posts shared with me. #} {# Stack vertically in portrait, sit side-by-side in landscape (.--two-up).#}
{% include "apps/applets/_partials/_applet-list-shell.html" with shell_title=owner_posts_title shell_items=owner.posts.all shell_item_template="apps/billboard/_partials/_my_posts_item.html" shell_empty="No posts yet." %} {% include "apps/applets/_partials/_applet-list-shell.html" with shell_title=others_posts_title shell_items=owner.shared_posts.all shell_item_template="apps/billboard/_partials/_my_posts_item.html" shell_empty="Nothing shared yet." %}
{% endblock content %}