mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-07 02:39:31 +01:00
2af30f715e
Fix ::User Profile Page Project Tab Have Inconsistent Layout and Style Added the big_avator for consistency in the all header_items tabs. Fixes: #24871 > ### Description > in the user profile page the `Packages` and `Projects` tab have small icons for user but other tabs have bigger profile picture with user info: > > ### Screenshots > ### **For Packages And Projects:** > ![image](https://user-images.githubusercontent.com/25511175/240148601-2420d77b-ba25-4718-9ccb-c5d0d95e3079.png) > > ### **For Other Tabs:** > ![image](https://user-images.githubusercontent.com/25511175/240148461-ce9636b3-fe11-4c46-a230-30d83eee5947.png) > ## Before ![image](https://github.com/go-gitea/gitea/assets/80308335/975ad038-07ca-4b10-b75d-ccf259be7b9d) ## After changes Project View <img width="1394" alt="image" src="https://github.com/go-gitea/gitea/assets/80308335/95d181d7-8e61-496d-9899-7b825c91ad56"> Packages View <img width="1378" alt="image" src="https://github.com/go-gitea/gitea/assets/80308335/7f5fd60f-6b18-4fa8-8c56-7b0d45d1a610"> ## Org view for projects page <img width="1385" alt="image" src="https://github.com/go-gitea/gitea/assets/80308335/6400dc89-a5ae-4f0a-831b-5b6efa020d89"> ## Org view for packages page <img width="1387" alt="image" src="https://github.com/go-gitea/gitea/assets/80308335/4e1e9ffe-1e4b-4334-8657-de11b5fd31d0"> --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: Giteabot <teabot@gitea.io> Co-authored-by: silverwind <me@silverwind.io>
66 lines
2.6 KiB
Handlebars
66 lines
2.6 KiB
Handlebars
<h2 class="ui dividing header">
|
|
{{if .PageIsEditProjects}}
|
|
{{.locale.Tr "repo.projects.edit"}}
|
|
<div class="sub header">{{.locale.Tr "repo.projects.edit_subheader"}}</div>
|
|
{{else}}
|
|
{{.locale.Tr "repo.projects.new"}}
|
|
<div class="sub header">{{.locale.Tr "repo.projects.new_subheader"}}</div>
|
|
{{end}}
|
|
</h2>
|
|
{{template "base/alert" .}}
|
|
<form class="ui form grid" action="{{.Link}}" method="post">
|
|
{{.CsrfTokenHtml}}
|
|
<div class="eleven wide column">
|
|
<input type="hidden" id="redirect" name="redirect" value="{{.redirect}}">
|
|
<div class="field {{if .Err_Title}}error{{end}}">
|
|
<label>{{.locale.Tr "repo.projects.title"}}</label>
|
|
<input name="title" placeholder="{{.locale.Tr "repo.projects.title"}}" value="{{.title}}" autofocus required>
|
|
</div>
|
|
<div class="field">
|
|
<label>{{.locale.Tr "repo.projects.description"}}</label>
|
|
<textarea name="content" placeholder="{{.locale.Tr "repo.projects.description_placeholder"}}">{{.content}}</textarea>
|
|
</div>
|
|
|
|
{{if not .PageIsEditProjects}}
|
|
<div class="field">
|
|
<label>{{.locale.Tr "repo.projects.template.desc"}}</label>
|
|
<div class="ui selection dropdown">
|
|
<input type="hidden" name="board_type" value="{{.type}}">
|
|
<div class="default text">{{.locale.Tr "repo.projects.template.desc_helper"}}</div>
|
|
<div class="menu">
|
|
{{range $element := .BoardTypes}}
|
|
<div class="item" data-id="{{$element.BoardType}}" data-value="{{$element.BoardType}}">{{$.locale.Tr $element.Translation}}</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
|
|
<div class="field">
|
|
<label>{{.locale.Tr "repo.projects.card_type.desc"}}</label>
|
|
<div class="ui selection dropdown">
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
|
{{range $element := .CardTypes}}
|
|
{{if or (eq $.card_type $element.CardType) (and (not $.PageIsEditProjects) (eq $element.CardType 1))}}
|
|
<input type="hidden" name="card_type" value="{{$element.CardType}}">
|
|
<div class="default text">{{$.locale.Tr $element.Translation}}</div>
|
|
{{end}}
|
|
{{end}}
|
|
<div class="menu">
|
|
{{range $element := .CardTypes}}
|
|
<div class="item" data-id="{{$element.CardType}}" data-value="{{$element.CardType}}">{{$.locale.Tr $element.Translation}}</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="divider"></div>
|
|
<div class="ui left">
|
|
<a class="ui cancel button" href="{{$.CancelLink}}">
|
|
{{.locale.Tr "repo.milestones.cancel"}}
|
|
</a>
|
|
<button class="ui primary button">
|
|
{{if .PageIsEditProjects}}{{.locale.Tr "repo.projects.modify"}}{{else}}{{.locale.Tr "repo.projects.create"}}{{end}}
|
|
</button>
|
|
</div>
|
|
</form>
|