diff options
author | Andrew Godwin | 2022-11-17 18:52:00 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-17 15:10:09 -0700 |
commit | 0851fbd1ec09b142608667bf90ee806e59cafb28 (patch) | |
tree | eb4bfa7e52ef0a66460840747ea83b7685e1a5e8 /templates/activities/_identity.html | |
parent | 2154e6f02252576d8652e66f26fa4ae635d0f8ee (diff) | |
download | takahe-0851fbd1ec09b142608667bf90ee806e59cafb28.tar.gz takahe-0851fbd1ec09b142608667bf90ee806e59cafb28.tar.bz2 takahe-0851fbd1ec09b142608667bf90ee806e59cafb28.zip |
Add search and better notifications
Diffstat (limited to 'templates/activities/_identity.html')
-rw-r--r-- | templates/activities/_identity.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/activities/_identity.html b/templates/activities/_identity.html new file mode 100644 index 0000000..36d14a9 --- /dev/null +++ b/templates/activities/_identity.html @@ -0,0 +1,15 @@ +{% load activity_tags %} +<div class="post user"> + + <img src="{{ identity.local_icon_url }}" class="icon"> + + {% if created %} + <time> + {{ event.created | timedeltashort }} + </time> + {% endif %} + + <a href="{{ identity.urls.view }}" class="handle"> + {{ identity.name_or_handle }} <small>@{{ identity.handle }}</small> + </a> +</div> |