diff options
author | Andrew Godwin | 2022-11-25 16:34:45 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-25 16:34:45 -0700 |
commit | 48ab05d28542ab3d9ddb654bc7f61e5dbe59a0fb (patch) | |
tree | e3b068209ae06ce4baebc2e14ff527a8bd17c31e /templates/activities/compose.html | |
parent | 79002e1eaf96e9cfcd2993715b67cf3a61e02fb3 (diff) | |
download | takahe-48ab05d28542ab3d9ddb654bc7f61e5dbe59a0fb.tar.gz takahe-48ab05d28542ab3d9ddb654bc7f61e5dbe59a0fb.tar.bz2 takahe-48ab05d28542ab3d9ddb654bc7f61e5dbe59a0fb.zip |
Better reply UI on compose form
Diffstat (limited to 'templates/activities/compose.html')
-rw-r--r-- | templates/activities/compose.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/activities/compose.html b/templates/activities/compose.html index 9d02988..1a02227 100644 --- a/templates/activities/compose.html +++ b/templates/activities/compose.html @@ -8,7 +8,8 @@ <fieldset> <legend>Content</legend> {% if reply_to %} - <p>Replying to <a href="{{ reply_to.urls.view }}">{{ reply_to }}</a></p> + <label>Replying to</label> + {% include "activities/_mini_post.html" with post=reply_to %} {% endif %} {{ form.reply_to }} {% include "forms/_field.html" with field=form.text %} |