mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 04:54:09 +00:00
8 lines
459 B
Go HTML Template
8 lines
459 B
Go HTML Template
|
<div class="ui equal width compact grid">
|
||
|
{{$issueReferenceLink := printf "%s#%d" .Issue.Repo.FullName .Issue.Index}}
|
||
|
<div class="row tw-items-center" data-tooltip-content="{{$issueReferenceLink}}">
|
||
|
<span class="text column truncate">{{ctx.Locale.Tr "repo.issues.reference_link" $issueReferenceLink}}</span>
|
||
|
<button class="ui two wide button column tw-p-2" data-clipboard-text="{{$issueReferenceLink}}">{{svg "octicon-copy" 14}}</button>
|
||
|
</div>
|
||
|
</div>
|