tangled
alpha
login
or
join now
yoten.app
/
yoten
17
fork
atom
Yōten: A social tracker for your language learning journey built on the atproto.
17
fork
atom
overview
issues
pulls
pipelines
fix: reply notification ui
brookjeynes.dev
5 months ago
250d6a19
03fc6034
verified
This commit was signed with the committer's
known signature
.
brookjeynes.dev
SSH Key Fingerprint:
SHA256:N3n3PCBSiXfS6EHlmGdx+LMEruJMj6FS2hqaXyfsw0s=
+12
1 changed file
expand all
collapse all
unified
split
internal
server
views
partials
notification.templ
+12
internal/server/views/partials/notification.templ
···
41
41
</a>
42
42
</p>
43
43
</div>
44
44
+
case db.NotificationTypeReply:
45
45
+
<div>
46
46
+
<h1 class="font-semibold">New Reply</h1>
47
47
+
<p class="text-sm mt-1">
48
48
+
<a class="hover:underline" href={ templ.SafeURL("/" + params.Notification.ActorDid) }>
49
49
+
@{ params.Notification.ActorBskyHandle }
50
50
+
</a> replied to your comment on this
51
51
+
<a class="hover:underline" href={ templ.SafeURL("/" + params.Notification.SubjectDid + "/session/" + params.Notification.SubjectRkey) }>
52
52
+
study session
53
53
+
</a>
54
54
+
</p>
55
55
+
</div>
44
56
default:
45
57
}
46
58
<p class="text-xs text-text-muted">{ params.Notification.CreatedAt.Format("02/01/2006") }</p>