alpha
Login
or
Join now
dunkirk.sh
/
core
forked from
tangled.org/core
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
link usernames in few more places
author
Akshay
date
1 year ago
(Feb 24, 2025, 11:30 PM UTC)
commit
1ab02721
1ab02721a2cc972a4c5b8fb441747e373d6c8300
parent
7468ad02
7468ad02c9183f6fce4790497bd398cd8fb39a95
+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
Reviewed
···
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
Reviewed
···
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>