takahe/templates/activities/home.html

42 lines
1.4 KiB
HTML
Raw Normal View History

2022-11-05 13:17:27 -07:00
{% extends "base.html" %}
{% block title %}Home{% endblock %}
{% block content %}
2022-11-13 15:14:38 -08:00
{% include "activities/_home_menu.html" %}
2022-11-05 13:17:27 -07:00
2022-11-13 15:14:38 -08:00
<section class="columns">
2022-11-05 13:17:27 -07:00
2022-11-13 15:14:38 -08:00
<div class="left-column">
2022-11-13 17:42:47 -08:00
{% for event in events %}
{% if event.type == "post" %}
{% include "activities/_post.html" with post=event.subject_post %}
{% elif event.type == "boost" %}
<div class="boost-banner">
<a href="{{ event.subject_identity.urls.view }}">
{{ event.subject_identity.name_or_handle }}
</a> boosted
</div>
{% include "activities/_post.html" with post=event.subject_post %}
{% endif %}
2022-11-13 15:14:38 -08:00
{% empty %}
2022-11-13 17:42:47 -08:00
Nothing to show yet.
2022-11-13 15:14:38 -08:00
{% endfor %}
</div>
<div class="right-column">
<h2>Compose</h2>
<form action="." method="POST" class="compose">
{% csrf_token %}
{{ form.text }}
{{ form.content_warning }}
<div class="buttons">
<span class="button toggle" _="on click toggle .enabled then toggle .hidden on #id_content_warning">CW</span>
<button>Post</button>
</div>
</form>
</div>
</section>
2022-11-05 13:17:27 -07:00
{% endblock %}