summaryrefslogtreecommitdiffstats
path: root/templates/activities/_mini_post.html
diff options
context:
space:
mode:
authorAndrew Godwin2022-11-25 16:34:45 -0700
committerAndrew Godwin2022-11-25 16:34:45 -0700
commit48ab05d28542ab3d9ddb654bc7f61e5dbe59a0fb (patch)
treee3b068209ae06ce4baebc2e14ff527a8bd17c31e /templates/activities/_mini_post.html
parent79002e1eaf96e9cfcd2993715b67cf3a61e02fb3 (diff)
downloadtakahe-48ab05d28542ab3d9ddb654bc7f61e5dbe59a0fb.tar.gz
takahe-48ab05d28542ab3d9ddb654bc7f61e5dbe59a0fb.tar.bz2
takahe-48ab05d28542ab3d9ddb654bc7f61e5dbe59a0fb.zip
Better reply UI on compose form
Diffstat (limited to 'templates/activities/_mini_post.html')
-rw-r--r--templates/activities/_mini_post.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/activities/_mini_post.html b/templates/activities/_mini_post.html
new file mode 100644
index 0000000..80ed213
--- /dev/null
+++ b/templates/activities/_mini_post.html
@@ -0,0 +1,16 @@
+{% load static %}
+{% load activity_tags %}
+<div class="post mini" data-takahe-id="{{ post.id }}">
+
+ <a href="{{ post.author.urls.view }}">
+ <img src="{{ post.author.local_icon_url }}" class="icon">
+ </a>
+
+ <a href="{{ post.author.urls.view }}" class="handle">
+ {{ post.author.name_or_handle }}
+ </a>
+
+ <div class="content">
+ {{ post.safe_content_local }}
+ </div>
+</div>