2022-11-05 20:17:27 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}Home{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2022-11-13 23:14:38 +00:00
|
|
|
{% include "activities/_home_menu.html" %}
|
2022-11-05 20:17:27 +00:00
|
|
|
|
2022-11-13 23:14:38 +00:00
|
|
|
<section class="columns">
|
2022-11-05 20:17:27 +00:00
|
|
|
|
2022-11-13 23:14:38 +00:00
|
|
|
<div class="left-column">
|
2022-11-14 01:42:47 +00: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 23:14:38 +00:00
|
|
|
{% empty %}
|
2022-11-14 01:42:47 +00:00
|
|
|
Nothing to show yet.
|
2022-11-13 23:14:38 +00:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="right-column">
|
|
|
|
<h2>Compose</h2>
|
2022-11-16 13:53:39 +00:00
|
|
|
<form action="/compose/" method="POST" class="compose">
|
2022-11-13 23:14:38 +00:00
|
|
|
{% 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>
|
2022-11-17 00:23:46 +00:00
|
|
|
<button>{% if config_identity.toot_mode %}Toot!{% else %}Post{% endif %}</button>
|
2022-11-13 23:14:38 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</section>
|
2022-11-05 20:17:27 +00:00
|
|
|
{% endblock %}
|