diff options
author | Andrew Godwin | 2022-11-05 17:51:54 -0600 |
---|---|---|
committer | Andrew Godwin | 2022-11-05 17:51:54 -0600 |
commit | e44a321ec53bc84b5986ac0371b4122201fa3a5a (patch) | |
tree | b3a5c4b42e59ad912001cf51c39db494b78aa07d /templates/statuses/_status.html | |
parent | 57e33f1215ee28f557f2765ec7864c6741d61e26 (diff) | |
download | takahe-e44a321ec53bc84b5986ac0371b4122201fa3a5a.tar.gz takahe-e44a321ec53bc84b5986ac0371b4122201fa3a5a.tar.bz2 takahe-e44a321ec53bc84b5986ac0371b4122201fa3a5a.zip |
Get Actor fetching and parsing working
Diffstat (limited to 'templates/statuses/_status.html')
-rw-r--r-- | templates/statuses/_status.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/statuses/_status.html b/templates/statuses/_status.html index 6e61fd9..b89909a 100644 --- a/templates/statuses/_status.html +++ b/templates/statuses/_status.html @@ -5,6 +5,8 @@ <small>{{ status.identity.short_handle }}</small> </a> </h3> - <time>{{ status.created | timesince }} ago</time> + <time> + <a href="{{ status.urls.view }}">{{ status.created | timesince }} ago</a> + </time> {{ status.text | linebreaks }} </div> |