2023-08-12 12:30:28 +02:00
{{ $canWriteProject := and .CanWriteProjects ( or ( not .Repository ) ( not .Repository.IsArchived )) }}
2023-11-27 18:43:52 +01:00
< div class = "ui container" >
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}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 17:42:49 +01:00
< div class = "tw-flex tw-justify-between tw-items-center tw-mb-4" >
< h2 class = "tw-mb-0" > {{ .Project.Title }} </ h2 >
2023-11-27 18:43:52 +01:00
{{ if $canWriteProject }}
< div class = "ui compact mini menu" >
< a class = "item" href = " {{ .Link }} /edit?redirect=project" >
{{ svg "octicon-pencil" }}
{{ ctx .Locale.Tr "repo.issues.label_edit" }}
< / a >
{{ if .Project.IsClosed }}
< button class = "item btn link-action" data-url = " {{ .Link }} /open" >
{{ svg "octicon-check" }}
{{ ctx .Locale.Tr "repo.projects.open" }}
< / button >
{{ else }}
< button class = "item btn link-action" data-url = " {{ .Link }} /close" >
{{ svg "octicon-skip" }}
{{ ctx .Locale.Tr "repo.projects.close" }}
< / button >
{{ end }}
< button class = "item btn delete-button" data-url = " {{ .Link }} /delete" data-id = " {{ .Project.ID }} " >
{{ svg "octicon-trash" }}
{{ ctx .Locale.Tr "repo.issues.label_delete" }}
2023-08-12 12:30:28 +02:00
< / button >
2023-11-27 18:43:52 +01:00
< button class = "item btn show-modal" data-modal = "#new-project-column-item" >
{{ svg "octicon-plus" }}
{{ ctx .Locale.Tr "new_project_column" }}
2023-08-12 12:30:28 +02:00
< / button >
2023-01-20 12:42:33 +01:00
< / div >
2023-11-27 18:43:52 +01:00
< div class = "ui small modal new-project-column-modal" id = "new-project-column-item" >
< div class = "header" >
{{ ctx .Locale.Tr "repo.projects.column.new" }}
< / div >
< div class = "content" >
< form class = "ui form" >
< div class = "required field" >
< label for = "new_project_column" > {{ ctx .Locale.Tr "repo.projects.column.new_title" }} </ label >
< input class = "new-project-column" id = "new_project_column" name = "title" required >
< / div >
2023-01-20 12:42:33 +01:00
2023-11-27 18:43:52 +01:00
< div class = "field color-field" >
2024-03-15 14:12:08 +01:00
< label for = "new_project_column_color_picker" > {{ ctx .Locale.Tr "repo.projects.column.color" }} </ label >
2023-11-27 18:43:52 +01:00
< div class = "color picker column" >
< input class = "color-picker" maxlength = "7" placeholder = "#c320f6" id = "new_project_column_color_picker" name = "color" >
{{ template "repo/issue/label_precolors" }}
< / div >
2023-07-07 20:06:49 +02:00
< / div >
2023-01-20 12:42:33 +01:00
2023-11-27 18:43:52 +01:00
< div class = "text right actions" >
< button class = "ui cancel button" > {{ ctx .Locale.Tr "settings.cancel" }} </ button >
< button data-url = " {{ $.Link }} " class = "ui primary button" id = "new_project_column_submit" > {{ ctx .Locale.Tr "repo.projects.column.new_submit" }} </ button >
< / div >
< / form >
< / div >
2023-01-20 12:42:33 +01:00
< / div >
2023-11-27 18:43:52 +01:00
{{ end }}
< / div >
2023-07-07 17:27:12 +02:00
2024-03-01 08:11:51 +01:00
< div class = "content" > {{ $.Project.RenderedContent }} </ div >
2023-08-12 12:30:28 +02:00
2023-11-27 18:43:52 +01:00
< div class = "divider" > < / div >
< / div >
2023-01-20 12:42:33 +01:00
2023-07-07 20:06:49 +02:00
< div id = "project-board" >
< div class = "board {{ if .CanWriteProjects }} sortable {{ end }} " >
2023-08-12 12:30:28 +02:00
{{ range .Columns }}
< div class = "ui segment project-column" style = "background: {{ .Color }} !important;" data-id = " {{ .ID }} " data-sorting = " {{ .Sorting }} " data-url = " {{ $.Link }} / {{ .ID }} " >
< div class = "project-column-header" >
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}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 17:42:49 +01:00
< div class = "ui large label project-column-title tw-py-1" >
2023-08-12 12:30:28 +02:00
< div class = "ui small circular grey label project-column-issue-count" >
2023-09-29 14:12:54 +02:00
{{ .NumIssues ctx }}
2023-07-07 20:06:49 +02:00
< / div >
2023-08-12 12:30:28 +02:00
{{ .Title }}
< / div >
{{ if and $canWriteProject ( ne .ID 0 ) }}
< div class = "ui dropdown jump item" >
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}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 17:42:49 +01:00
< div class = "tw-px-2" >
2023-08-12 12:30:28 +02:00
{{ svg "octicon-kebab-horizontal" }}
< / div >
2023-08-26 04:44:00 +02:00
< div class = "menu user-menu" >
2023-08-12 12:30:28 +02:00
< a class = "item show-modal button" data-modal = "#edit-project-column-modal- {{ .ID }} " >
{{ svg "octicon-pencil" }}
{{ ctx .Locale.Tr "repo.projects.column.edit" }}
2023-01-20 12:42:33 +01:00
< / a >
2023-08-12 12:30:28 +02:00
{{ if not .Default }}
< a class = "item show-modal button default-project-column-show"
data-modal="#default-project-column-modal-{{ .ID }} "
data-modal-default-project-column-header="{{ ctx .Locale.Tr "repo.projects.column.set_default" }} "
data-modal-default-project-column-content="{{ ctx .Locale.Tr "repo.projects.column.set_default_desc" }} "
data-url="{{ $.Link }} /{{ .ID }} /default">
{{ svg "octicon-pin" }}
{{ ctx .Locale.Tr "repo.projects.column.set_default" }}
< / a >
{{ else }}
< a class = "item show-modal button default-project-column-show"
data-modal="#default-project-column-modal-{{ .ID }} "
data-modal-default-project-column-header="{{ ctx .Locale.Tr "repo.projects.column.unset_default" }} "
data-modal-default-project-column-content="{{ ctx .Locale.Tr "repo.projects.column.unset_default_desc" }} "
data-url="{{ $.Link }} /{{ .ID }} /unsetdefault">
{{ svg "octicon-pin-slash" }}
{{ ctx .Locale.Tr "repo.projects.column.unset_default" }}
< / a >
{{ end }}
< a class = "item show-modal button show-delete-project-column-modal"
data-modal="#delete-project-column-modal-{{ .ID }} "
data-url="{{ $.Link }} /{{ .ID }} ">
{{ svg "octicon-trash" }}
{{ ctx .Locale.Tr "repo.projects.column.delete" }}
2023-01-20 12:42:33 +01:00
< / a >
2023-08-12 12:30:28 +02:00
< div class = "ui small modal edit-project-column-modal" id = "edit-project-column-modal- {{ .ID }} " >
< div class = "header" >
{{ ctx .Locale.Tr "repo.projects.column.edit" }}
< / div >
< div class = "content" >
< form class = "ui form" >
< div class = "required field" >
< label for = "new_project_column_title" > {{ ctx .Locale.Tr "repo.projects.column.edit_title" }} </ label >
< input class = "project-column-title-input" id = "new_project_column_title" name = "title" value = " {{ .Title }} " required >
< / div >
2023-01-20 12:42:33 +01:00
2023-08-12 12:30:28 +02:00
< div class = "field color-field" >
< label for = "new_project_column_color" > {{ ctx .Locale.Tr "repo.projects.column.color" }} </ label >
< div class = "color picker column" >
< input class = "color-picker" maxlength = "7" placeholder = "#c320f6" id = "new_project_column_color" name = "color" value = " {{ .Color }} " >
2023-08-28 16:14:51 +02:00
{{ template "repo/issue/label_precolors" }}
2023-01-20 12:42:33 +01:00
< / div >
< / div >
2023-08-12 12:30:28 +02:00
< div class = "text right actions" >
< button class = "ui cancel button" > {{ ctx .Locale.Tr "settings.cancel" }} </ button >
< button data-url = " {{ $.Link }} / {{ .ID }} " class = "ui primary button edit-project-column-button" > {{ ctx .Locale.Tr "repo.projects.column.edit" }} </ button >
< / div >
< / form >
< / div >
2023-01-20 12:42:33 +01:00
< / div >
2023-08-12 12:30:28 +02:00
< div class = "ui g-modal-confirm modal default-project-column-modal" id = "default-project-column-modal- {{ .ID }} " >
< div class = "header" >
< span id = "default-project-column-header" > < / span >
< / div >
< div class = "content" >
< label id = "default-project-column-content" > < / label >
< / div >
2023-09-24 22:31:58 +02:00
{{ template "base/modal_actions_confirm" ( dict "ModalButtonTypes" "confirm" ) }}
2023-01-20 12:42:33 +01:00
< / div >
2023-08-12 12:30:28 +02:00
< div class = "ui g-modal-confirm modal" id = "delete-project-column-modal- {{ .ID }} " >
< div class = "header" >
{{ ctx .Locale.Tr "repo.projects.column.delete" }}
< / div >
< div class = "content" >
< label >
{{ ctx .Locale.Tr "repo.projects.column.deletion_desc" }}
< / label >
< / div >
2023-09-24 22:31:58 +02:00
{{ template "base/modal_actions_confirm" ( dict "ModalButtonTypes" "confirm" ) }}
2023-07-07 20:06:49 +02:00
< / div >
2023-01-20 12:42:33 +01:00
< / div >
< / div >
2023-07-07 20:06:49 +02:00
{{ end }}
2023-08-12 12:30:28 +02:00
< / div >
2023-01-20 12:42:33 +01:00
2023-08-12 12:30:28 +02:00
< div class = "divider" > < / div >
2024-03-04 04:33:20 +01:00
< div class = "ui cards {{ if and $canWriteProject ( ne .ID 0 ) }} {{/* ID 0 is default column which cannot be moved */}} tw-cursor-grab {{ end }} " data-url = " {{ $.Link }} / {{ .ID }} " data-project = " {{ $.Project.ID }} " data-board = " {{ .ID }} " id = "board_ {{ .ID }} " >
2023-08-12 12:30:28 +02:00
{{ range ( index $.IssuesMap .ID ) }}
2024-03-04 04:33:20 +01:00
< div class = "issue-card gt-word-break {{ if $canWriteProject }} tw-cursor-grab {{ end }} " data-issue = " {{ .ID }} " >
2023-08-12 12:30:28 +02:00
{{ template "repo/issue/card" ( dict "Issue" . "Page" $ ) }}
2023-01-20 12:42:33 +01:00
< / div >
{{ end }}
< / div >
< / div >
2023-07-07 20:06:49 +02:00
{{ end }}
2023-01-20 12:42:33 +01:00
< / div >
2023-07-07 20:06:49 +02:00
< / div >
2023-03-12 14:36:47 +01:00
{{ if .CanWriteProjects }}
2023-04-24 13:08:59 +02:00
< div class = "ui g-modal-confirm delete modal" >
2023-04-23 11:24:19 +02:00
< div class = "header" >
2023-01-20 12:42:33 +01:00
{{ svg "octicon-trash" }}
2023-08-12 12:30:28 +02:00
{{ ctx .Locale.Tr "repo.projects.deletion" }}
2023-01-20 12:42:33 +01:00
< / div >
< div class = "content" >
2023-08-12 12:30:28 +02:00
< p > {{ ctx .Locale.Tr "repo.projects.deletion_desc" }} </ p >
2023-01-20 12:42:33 +01:00
< / div >
2023-04-23 11:24:19 +02:00
{{ template "base/modal_actions_confirm" . }}
2023-01-20 12:42:33 +01:00
< / div >
{{ end }}