diff options
author | Andrew Godwin | 2022-11-23 00:14:55 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-23 00:14:55 -0700 |
commit | 7081a718e036b4277803402f0886ddf2ff6ef474 (patch) | |
tree | 3e2fddc844eb4e4f559003c332e1d06d09d1a8cd /templates | |
parent | 2c5b96e2641871abc5019fd509ba005e35102ba4 (diff) | |
download | takahe-7081a718e036b4277803402f0886ddf2ff6ef474.tar.gz takahe-7081a718e036b4277803402f0886ddf2ff6ef474.tar.bz2 takahe-7081a718e036b4277803402f0886ddf2ff6ef474.zip |
Move actions next to time, for compactness
Diffstat (limited to 'templates')
-rw-r--r-- | templates/activities/_post.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/templates/activities/_post.html b/templates/activities/_post.html index 80fa653..11e4494 100644 --- a/templates/activities/_post.html +++ b/templates/activities/_post.html @@ -25,6 +25,13 @@ </a> </time> + {% if request.identity %} + <div class="actions"> + {% include "activities/_like.html" %} + {% include "activities/_boost.html" %} + </div> + {% endif %} + <a href="{{ post.author.urls.view }}" class="handle"> {{ post.author.name_or_handle }} <small>@{{ post.author.handle }}</small> </a> @@ -48,11 +55,4 @@ {% endfor %} </div> {% endif %} - - {% if request.identity %} - <div class="actions"> - {% include "activities/_like.html" %} - {% include "activities/_boost.html" %} - </div> - {% endif %} </div> |