mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-02 08:09:21 +01:00
afdab9d8d4
Remove this small, but unnecessary [module](https://fomantic-ui.com/elements/image.html) and use `img` selector over previous `.image`. Did a few tests, could not notice any visual regression. Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: Lauris BH <lauris@nix.lv>
42 lines
1.3 KiB
Handlebars
42 lines
1.3 KiB
Handlebars
<div class="dropzone-attachments">
|
|
{{if .Attachments}}
|
|
<div class="ui clearing divider"></div>
|
|
{{end}}
|
|
<div class="ui middle aligned padded grid">
|
|
{{$hasThumbnails := false}}
|
|
{{- range .Attachments -}}
|
|
<div class="twelve wide column" style="padding: 6px;">
|
|
<a target="_blank" rel="noopener noreferrer" href="{{.DownloadURL}}" title='{{$.ctx.locale.Tr "repo.issues.attachment.open_tab" .Name}}'>
|
|
{{if FilenameIsImage .Name}}
|
|
{{if not (containGeneric $.Content .UUID)}}
|
|
{{$hasThumbnails = true}}
|
|
{{end}}
|
|
{{svg "octicon-file"}}
|
|
{{else}}
|
|
{{svg "octicon-desktop-download"}}
|
|
{{end}}
|
|
<span><strong>{{.Name}}</strong></span>
|
|
</a>
|
|
</div>
|
|
<div class="four wide column" style="padding: 0px;">
|
|
<span class="ui text grey right">{{.Size | FileSize}}</span>
|
|
</div>
|
|
{{end -}}
|
|
</div>
|
|
|
|
{{if $hasThumbnails}}
|
|
<div class="ui clearing divider"></div>
|
|
<div class="ui small thumbnails">
|
|
{{- range .Attachments -}}
|
|
{{if FilenameIsImage .Name}}
|
|
{{if not (containGeneric $.Content .UUID)}}
|
|
<a target="_blank" rel="noopener noreferrer" href="{{.DownloadURL}}">
|
|
<img src="{{.DownloadURL}}" title='{{$.ctx.locale.Tr "repo.issues.attachment.open_tab" .Name}}'>
|
|
</a>
|
|
{{end}}
|
|
{{end}}
|
|
{{end -}}
|
|
</div>
|
|
{{end}}
|
|
|
|
</div>
|