2020-12-13 22:12:27 +03:00
<div class="dropzone-attachments">
2021-04-11 06:46:37 +03:00
{{ if .Attachments }}
2023-06-29 15:24:22 +03:00
<div class="divider"></div>
2021-04-11 06:46:37 +03:00
{{ end }}
2023-04-20 09:39:44 +03:00
{{ $ hasThumbnails : = false }}
{{ - range .Attachments - }}
2024-03-22 16:45:10 +03:00
<div class="tw-flex">
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
2024-03-24 19:42:49 +03:00
<div class="tw-flex-1 tw-p-2">
2023-09-25 11:56:50 +03:00
<a target="_blank" rel="noopener noreferrer" href=" {{ .DownloadURL }} " title=" {{ ctx .Locale .Tr "repo.issues.attachment.open_tab" .Name }} ">
2021-04-11 06:46:37 +03:00
{{ if FilenameIsImage .Name }}
2024-03-01 13:56:29 +03:00
{{ if not ( StringUtils .Contains ( StringUtils .ToString $ .RenderedContent ) .UUID ) }}
2021-04-11 06:46:37 +03:00
{{ $ hasThumbnails = true }}
{{ end }}
2022-09-12 12:08:46 +03:00
{{ svg "octicon-file" }}
2021-04-11 06:46:37 +03:00
{{ else }}
2022-09-12 12:08:46 +03:00
{{ svg "octicon-desktop-download" }}
2021-04-11 06:46:37 +03:00
{{ end }}
<span><strong> {{ .Name }} </strong></span>
</a>
</div>
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
2024-03-24 19:42:49 +03:00
<div class="tw-p-2 tw-flex tw-items-center">
2023-08-31 05:29:59 +03:00
<span class="ui text grey"> {{ .Size | FileSize }} </span>
2021-04-11 06:46:37 +03:00
</div>
2023-04-20 09:39:44 +03:00
</div>
{{ end - }}
2020-12-13 22:12:27 +03:00
2021-04-11 06:46:37 +03:00
{{ if $ hasThumbnails }}
2023-06-29 15:24:22 +03:00
<div class="divider"></div>
2022-09-12 12:08:46 +03:00
<div class="ui small thumbnails">
2021-04-11 06:46:37 +03:00
{{ - range .Attachments - }}
{{ if FilenameIsImage .Name }}
2024-03-01 13:56:29 +03:00
{{ if not ( StringUtils .Contains ( StringUtils .ToString $ .RenderedContent ) .UUID ) }}
2021-04-11 06:46:37 +03:00
<a target="_blank" rel="noopener noreferrer" href=" {{ .DownloadURL }} ">
2023-09-25 11:56:50 +03:00
<img alt=" {{ .Name }} " src=" {{ .DownloadURL }} " title=" {{ ctx .Locale .Tr "repo.issues.attachment.open_tab" .Name }} ">
2021-04-11 06:46:37 +03:00
</a>
{{ end }}
{{ end }}
{{ end - }}
</div>
{{ end }}
2020-12-13 22:12:27 +03:00
2020-04-21 07:15:41 +03:00
</div>