tangled
alpha
login
or
join now
veryroundbird.house
/
core
forked from
tangled.org/core
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
link usernames in few more places
oppi.li
1 year ago
97278200
51905a9c
+6
-3
2 changed files
expand all
collapse all
unified
split
appview
pages
templates
repo
issues
issue.html
issues.html
+4
-2
appview/pages/templates/repo/issues/issue.html
···
35
35
</div>
36
36
<span class="text-gray-400 text-sm">
37
37
opened by
38
38
-
{{ didOrHandle .Issue.OwnerDid .IssueOwnerHandle }}
38
38
+
{{ $owner := didOrHandle .Issue.OwnerDid .IssueOwnerHandle }}
39
39
+
<a href="/{{ $owner }}" class="no-underline hover:underline">{{ $owner }}</a>
39
40
</span>
40
41
</div>
41
42
···
53
54
class="border border-gray-200 p-4"
54
55
>
55
56
<div class="flex items-center gap-2 mb-2">
57
57
+
{{ $owner := index $.DidHandleMap .OwnerDid }}
56
58
<span class="text-gray-400 text-sm">
57
57
-
{{ index $.DidHandleMap .OwnerDid }}
59
59
+
<a href="{{ $owner }}" class="no-underline hover:underline">{{ $owner }}</a>
58
60
</span>
59
61
<span class="text-gray-500 text-sm">
60
62
{{ .Created | timeFmt }}
+2
-1
appview/pages/templates/repo/issues/issues.html
···
39
39
<span>#{{ .IssueId }}</span>
40
40
<span class="before:content-['·']">
41
41
opened by
42
42
-
{{ index $.DidHandleMap .OwnerDid }}
42
42
+
{{ $owner := index $.DidHandleMap .OwnerDid }}
43
43
+
<a href="{{ $owner }}" class="no-underline hover:underline">{{ $owner }}</a>
43
44
</span>
44
45
</div>
45
46
</div>