moviewyrm/bookwyrm/templates/snippets/status.html

43 lines
1.5 KiB
HTML
Raw Normal View History

2020-09-29 04:08:42 +00:00
{% load humanize %}
{% load fr_display %}
2020-04-01 21:55:32 +00:00
2020-09-29 22:05:50 +00:00
<div class="card">
2020-09-29 04:08:42 +00:00
<header class="card-header">
2020-09-29 01:25:05 +00:00
{% include 'snippets/status_header.html' with status=status %}
</header>
<div class="card-content">
{% if status.status_type == 'Boost' %}
{% include 'snippets/status_content.html' with status=status.boosted_status %}
{% else %}
2020-04-02 02:38:07 +00:00
{% include 'snippets/status_content.html' with status=status %}
2020-09-29 01:25:05 +00:00
{% endif %}
2020-04-02 02:38:07 +00:00
</div>
2020-04-01 21:32:56 +00:00
2020-09-29 01:25:05 +00:00
<footer class="card-footer">
{% if status.status_type == 'Boost' %}
{% include 'snippets/interaction.html' with activity=status.boosted_status %}
{% else %}
{% include 'snippets/interaction.html' with activity=status %}
{% endif %}
2020-09-29 04:08:42 +00:00
<div class="card-footer-item">
<span class="icon icon-public">
2020-09-30 22:10:37 +00:00
<span class="is-sr-only">Public post</span>
2020-09-29 04:08:42 +00:00
</span>
2020-10-08 19:32:45 +00:00
{% if status.user == request.user %}
<form name="delete-{{status.id}}" action="/delete-status" method="post">
{% csrf_token %}
<input type="hidden" name="status" value="{{ status.id }}">
<button type="submit">
<span class="icon icon-cancel">
<span class="is-sr-only">Delete post</span>
</span>
</button>
</form>
{% endif %}
2020-09-29 04:08:42 +00:00
<a href="{{ status.remote_id }}">{{ status.published_date | naturaltime }}</a>
</div>
2020-09-29 01:25:05 +00:00
</footer>
</div>