2023-04-23 10:21:21 +00:00
|
|
|
{{template "user/settings/layout_head" (dict "ctxData" . "pageClass" "user settings profile")}}
|
|
|
|
<div class="user-setting-content">
|
2017-03-15 22:39:38 +00:00
|
|
|
<h4 class="ui top attached header">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "settings.public_profile"}}
|
2017-03-15 22:39:38 +00:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2023-09-25 08:56:50 +00:00
|
|
|
<p>{{ctx.Locale.Tr "settings.profile_desc"}}</p>
|
2017-03-15 22:39:38 +00:00
|
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="required field {{if .Err_Name}}error{{end}}">
|
2023-09-25 08:56:50 +00:00
|
|
|
<label for="username">{{ctx.Locale.Tr "username"}}
|
2024-03-24 18:23:38 +00:00
|
|
|
<span class="text red tw-hidden" id="name-change-prompt"> {{ctx.Locale.Tr "settings.change_username_prompt"}}</span>
|
|
|
|
<span class="text red tw-hidden" id="name-change-redirect-prompt"> {{ctx.Locale.Tr "settings.change_username_redirect_prompt"}}</span>
|
2021-01-24 15:23:05 +00:00
|
|
|
</label>
|
2023-05-26 09:42:54 +00:00
|
|
|
<input id="username" name="name" value="{{.SignedUser.Name}}" data-name="{{.SignedUser.Name}}" autofocus required {{if or (not .SignedUser.IsLocal) .IsReverseProxy}}disabled{{end}} maxlength="40">
|
2021-05-15 18:33:13 +00:00
|
|
|
{{if or (not .SignedUser.IsLocal) .IsReverseProxy}}
|
2023-09-25 08:56:50 +00:00
|
|
|
<p class="help text blue">{{ctx.Locale.Tr "settings.password_username_disabled"}}</p>
|
2017-03-15 22:39:38 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
<div class="field {{if .Err_FullName}}error{{end}}">
|
2023-09-25 08:56:50 +00:00
|
|
|
<label for="full_name">{{ctx.Locale.Tr "settings.full_name"}}</label>
|
2023-05-26 09:42:54 +00:00
|
|
|
<input id="full_name" name="full_name" value="{{.SignedUser.FullName}}" maxlength="100">
|
2017-03-15 22:39:38 +00:00
|
|
|
</div>
|
2023-09-26 05:34:09 +00:00
|
|
|
<div class="inline field">
|
2023-12-27 07:18:19 +00:00
|
|
|
<span class="inline field"><label for="pronouns">{{ctx.Locale.Tr "settings.pronouns"}}</label></span>
|
2023-09-26 05:34:09 +00:00
|
|
|
<div id="pronouns-dropdown" style="display: none" class="ui selection dropdown">
|
2024-02-26 19:47:05 +00:00
|
|
|
<input type="hidden" value="{{.SignedUser.Pronouns}}">
|
2023-09-26 05:34:09 +00:00
|
|
|
<div class="text">
|
|
|
|
{{if .PronounsAreCustom}}
|
2023-12-27 07:18:19 +00:00
|
|
|
{{ctx.Locale.Tr "settings.pronouns_custom"}}
|
2023-09-26 06:21:52 +00:00
|
|
|
{{else if eq "" .SignedUser.Pronouns}}
|
2023-12-27 07:18:19 +00:00
|
|
|
{{ctx.Locale.Tr "settings.pronouns_unspecified"}}
|
2023-09-26 05:34:09 +00:00
|
|
|
{{else}}
|
|
|
|
{{.SignedUser.Pronouns}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
|
|
|
<div class="menu">
|
2023-12-27 07:18:19 +00:00
|
|
|
<div class="item{{if eq "" .SignedUser.Pronouns}} active selected{{end}}" data-value=""><i>{{ctx.Locale.Tr "settings.pronouns_unspecified"}}</i></div>
|
2023-09-26 05:34:09 +00:00
|
|
|
<div class="item{{if eq "he/him" .SignedUser.Pronouns}} active selected{{end}}" data-value="he/him">he/him</div>
|
|
|
|
<div class="item{{if eq "she/her" .SignedUser.Pronouns}} active selected{{end}}" data-value="she/her">she/her</div>
|
|
|
|
<div class="item{{if eq "they/them" .SignedUser.Pronouns}} active selected{{end}}" data-value="they/them">they/them</div>
|
|
|
|
<div class="item{{if eq "it/its" .SignedUser.Pronouns}} active selected{{end}}" data-value="it/its">it/its</div>
|
2024-02-24 18:24:12 +00:00
|
|
|
<div class="item{{if eq "any pronouns" .SignedUser.Pronouns}} active selected{{end}}" data-value="any pronouns">any pronouns</div>
|
2023-09-26 05:34:09 +00:00
|
|
|
{{if .PronounsAreCustom}}
|
2023-12-27 07:18:19 +00:00
|
|
|
<div class="item active selected" data-value="{{.SignedUser.Pronouns}}"><i>{{ctx.Locale.Tr "settings.pronouns_custom"}}</i></div>
|
2023-09-26 05:34:09 +00:00
|
|
|
{{else}}
|
2023-12-27 07:18:19 +00:00
|
|
|
<div class="item" data-value="!"><i>{{ctx.Locale.Tr "settings.pronouns_custom"}}</i></div>
|
2023-09-26 05:34:09 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<input id="pronouns-custom" name="pronouns" value="{{.SignedUser.Pronouns}}" maxlength="50">
|
2023-09-26 02:39:12 +00:00
|
|
|
</div>
|
2023-09-26 17:57:01 +00:00
|
|
|
<div class="field {{if .Err_Email}}error{{end}}">
|
|
|
|
<label>{{ctx.Locale.Tr "email"}}</label>
|
|
|
|
<p id="signed-user-email">{{.SignedUser.Email}}</p>
|
|
|
|
</div>
|
2024-04-06 18:06:39 +00:00
|
|
|
<div class="field {{if .Err_Biography}}error{{end}}">
|
|
|
|
<label for="biography">{{ctx.Locale.Tr "user.user_bio"}}</label>
|
|
|
|
<textarea id="biography" name="biography" rows="2" placeholder="{{ctx.Locale.Tr "settings.biography_placeholder"}}" maxlength="255">{{.SignedUser.Description}}</textarea>
|
2023-09-26 17:57:01 +00:00
|
|
|
</div>
|
|
|
|
<div class="field {{if .Err_Website}}error{{end}}">
|
|
|
|
<label for="website">{{ctx.Locale.Tr "settings.website"}}</label>
|
|
|
|
<input id="website" name="website" type="url" value="{{.SignedUser.Website}}" maxlength="255">
|
|
|
|
</div>
|
|
|
|
<div class="field">
|
|
|
|
<label for="location">{{ctx.Locale.Tr "settings.location"}}</label>
|
|
|
|
<input id="location" name="location" placeholder="{{ctx.Locale.Tr "settings.location_placeholder"}}" value="{{.SignedUser.Location}}" maxlength="50">
|
|
|
|
</div>
|
2015-09-06 20:31:22 +00:00
|
|
|
|
2023-06-29 12:24:22 +00:00
|
|
|
<div class="divider"></div>
|
2021-06-26 19:53:14 +00:00
|
|
|
<!-- private block -->
|
|
|
|
|
2023-06-22 08:58:16 +00:00
|
|
|
<div class="field" id="privacy-user-settings">
|
2024-02-17 15:01:25 +00:00
|
|
|
<label><strong>{{ctx.Locale.Tr "settings.privacy"}}</strong></label>
|
2021-06-26 19:53:14 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="inline field {{if .Err_Visibility}}error{{end}}">
|
2024-02-17 15:01:25 +00:00
|
|
|
<span class="inline required field"><label>{{ctx.Locale.Tr "settings.visibility"}}</label></span>
|
2021-06-26 19:53:14 +00:00
|
|
|
<div class="ui selection type dropdown">
|
2021-06-27 18:47:35 +00:00
|
|
|
{{if .SignedUser.Visibility.IsPublic}}<input type="hidden" id="visibility" name="visibility" value="0">{{end}}
|
|
|
|
{{if .SignedUser.Visibility.IsLimited}}<input type="hidden" id="visibility" name="visibility" value="1">{{end}}
|
|
|
|
{{if .SignedUser.Visibility.IsPrivate}}<input type="hidden" id="visibility" name="visibility" value="2">{{end}}
|
2021-06-26 19:53:14 +00:00
|
|
|
<div class="text">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{if .SignedUser.Visibility.IsPublic}}{{ctx.Locale.Tr "settings.visibility.public"}}{{end}}
|
|
|
|
{{if .SignedUser.Visibility.IsLimited}}{{ctx.Locale.Tr "settings.visibility.limited"}}{{end}}
|
|
|
|
{{if .SignedUser.Visibility.IsPrivate}}{{ctx.Locale.Tr "settings.visibility.private"}}{{end}}
|
2021-06-26 19:53:14 +00:00
|
|
|
</div>
|
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
|
|
|
<div class="menu">
|
2021-06-27 18:47:35 +00:00
|
|
|
{{range $mode := .AllowedUserVisibilityModes}}
|
|
|
|
{{if $mode.IsPublic}}
|
2023-09-25 08:56:50 +00:00
|
|
|
<div class="item" data-tooltip-content="{{ctx.Locale.Tr "settings.visibility.public_tooltip"}}" data-value="0">{{ctx.Locale.Tr "settings.visibility.public"}}</div>
|
2021-06-27 18:47:35 +00:00
|
|
|
{{else if $mode.IsLimited}}
|
2023-09-25 08:56:50 +00:00
|
|
|
<div class="item" data-tooltip-content="{{ctx.Locale.Tr "settings.visibility.limited_tooltip"}}" data-value="1">{{ctx.Locale.Tr "settings.visibility.limited"}}</div>
|
2021-06-27 18:47:35 +00:00
|
|
|
{{else if $mode.IsPrivate}}
|
2023-09-25 08:56:50 +00:00
|
|
|
<div class="item" data-tooltip-content="{{ctx.Locale.Tr "settings.visibility.private_tooltip"}}" data-value="2">{{ctx.Locale.Tr "settings.visibility.private"}}</div>
|
2021-06-27 18:47:35 +00:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2021-06-26 19:53:14 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-05-05 00:28:30 +00:00
|
|
|
|
2023-06-22 08:58:16 +00:00
|
|
|
<div class="field">
|
|
|
|
<div class="ui checkbox">
|
2023-10-25 11:12:36 +00:00
|
|
|
<label data-tooltip-content="{{ctx.Locale.Tr "settings.keep_email_private_popup" .SignedUser.GetPlaceholderEmail}}"><strong>{{ctx.Locale.Tr "settings.keep_email_private"}}</strong></label>
|
2023-06-22 08:58:16 +00:00
|
|
|
<input name="keep_email_private" type="checkbox" {{if .SignedUser.KeepEmailPrivate}}checked{{end}}>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2020-06-05 20:01:53 +00:00
|
|
|
<div class="field">
|
|
|
|
<div class="ui checkbox" id="keep-activity-private">
|
2023-09-25 12:42:40 +00:00
|
|
|
<label data-tooltip-content="{{ctx.Locale.Tr "settings.keep_activity_private_popup"}}"><strong>{{ctx.Locale.Tr "settings.keep_activity_private"}}</strong></label>
|
2020-06-05 20:01:53 +00:00
|
|
|
<input name="keep_activity_private" type="checkbox" {{if .SignedUser.KeepActivityPrivate}}checked{{end}}>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-06-26 19:53:14 +00:00
|
|
|
|
2023-06-29 12:24:22 +00:00
|
|
|
<div class="divider"></div>
|
2021-06-26 19:53:14 +00:00
|
|
|
|
2017-03-15 22:39:38 +00:00
|
|
|
<div class="field">
|
2023-09-25 08:56:50 +00:00
|
|
|
<button class="ui primary button">{{ctx.Locale.Tr "settings.update_profile"}}</button>
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
2017-03-15 22:39:38 +00:00
|
|
|
</form>
|
2018-05-15 10:07:32 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<h4 class="ui top attached header">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "settings.avatar"}}
|
2018-05-15 10:07:32 +00:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
<form class="ui form" action="{{.Link}}/avatar" method="post" enctype="multipart/form-data">
|
|
|
|
{{.CsrfTokenHtml}}
|
2023-08-08 08:29:14 +00:00
|
|
|
{{if not .DisableGravatar}}
|
2018-05-15 10:07:32 +00:00
|
|
|
<div class="inline field">
|
|
|
|
<div class="ui radio checkbox">
|
|
|
|
<input name="source" value="lookup" type="radio" {{if not .SignedUser.UseCustomAvatar}}checked{{end}}>
|
2023-09-25 08:56:50 +00:00
|
|
|
<label>{{ctx.Locale.Tr "settings.lookup_avatar_by_mail"}}</label>
|
2018-05-15 10:07:32 +00:00
|
|
|
</div>
|
|
|
|
</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}/**/*
```
(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 16:42:49 +00:00
|
|
|
<div class="field tw-pl-4 {{if .Err_Gravatar}}error{{end}}">
|
2023-09-25 08:56:50 +00:00
|
|
|
<label for="gravatar">Avatar {{ctx.Locale.Tr "email"}}</label>
|
2023-03-27 16:05:51 +00:00
|
|
|
<input id="gravatar" name="gravatar" value="{{.SignedUser.AvatarEmail}}">
|
2018-05-15 10:07:32 +00:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2017-03-15 22:39:38 +00:00
|
|
|
|
2018-05-15 10:07:32 +00:00
|
|
|
<div class="inline field">
|
|
|
|
<div class="ui radio checkbox">
|
|
|
|
<input name="source" value="local" type="radio" {{if .SignedUser.UseCustomAvatar}}checked{{end}}>
|
2023-09-25 08:56:50 +00:00
|
|
|
<label>{{ctx.Locale.Tr "settings.enable_custom_avatar"}}</label>
|
2018-05-15 10:07:32 +00:00
|
|
|
</div>
|
|
|
|
</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}/**/*
```
(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 16:42:49 +00:00
|
|
|
<div class="inline field tw-pl-4">
|
2024-02-17 15:01:25 +00:00
|
|
|
<label for="new-avatar">{{ctx.Locale.Tr "settings.choose_new_avatar"}}</label>
|
|
|
|
<input id="new-avatar" name="avatar" type="file" accept="image/png,image/jpeg,image/gif,image/webp">
|
2018-05-15 10:07:32 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="field">
|
2023-09-25 08:56:50 +00:00
|
|
|
<button class="ui primary button">{{ctx.Locale.Tr "settings.update_avatar"}}</button>
|
|
|
|
<button class="ui red button link-action" data-url="{{.Link}}/avatar/delete">{{ctx.Locale.Tr "settings.delete_current_avatar"}}</button>
|
2018-05-15 10:07:32 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-04-23 10:21:21 +00:00
|
|
|
{{template "user/settings/layout_footer" .}}
|