mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
9269a038a4
* Direct avatar rendering This adds new template helpers for avatar rendering which output image elements with direct links to avatars which makes them cacheable by the browsers. This should be a major performance improvment for pages with many avatars. * fix avatars of other user's profile pages * fix top border on user avatar name * uncircle avatars * remove old incomplete avatar selector * use title attribute for name and add it back on blame * minor refactor * tweak comments * fix url path join and adjust test to new result * dedupe functions
51 lines
1.7 KiB
Handlebars
51 lines
1.7 KiB
Handlebars
{{template "base/head" .}}
|
|
<div class="page-content organization teams">
|
|
{{template "org/header" .}}
|
|
<div class="ui container">
|
|
{{template "base/alert" .}}
|
|
<div class="ui grid">
|
|
{{template "org/team/sidebar" .}}
|
|
<div class="ui ten wide column">
|
|
{{template "org/team/navbar" .}}
|
|
{{if .IsOrganizationOwner}}
|
|
<div class="ui attached segment">
|
|
<form class="ui form" id="add-member-form" action="{{$.OrgLink}}/teams/{{$.Team.LowerName}}/action/add" method="post">
|
|
{{.CsrfTokenHtml}}
|
|
<input type="hidden" name="uid" value="{{.SignedUser.ID}}">
|
|
<div class="inline field ui left">
|
|
<div id="search-user-box" class="ui search">
|
|
<div class="ui input">
|
|
<input class="prompt" name="uname" placeholder="{{.i18n.Tr "repo.settings.search_user_placeholder"}}" autocomplete="off" required>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<button class="ui green button">{{.i18n.Tr "org.teams.add_team_member"}}</button>
|
|
</form>
|
|
</div>
|
|
{{end}}
|
|
<div class="ui bottom attached table segment members">
|
|
{{range .Team.Members}}
|
|
<div class="item">
|
|
{{if $.IsOrganizationOwner}}
|
|
<form method="post" action="{{$.OrgLink}}/teams/{{$.Team.LowerName}}/action/remove">
|
|
{{$.CsrfTokenHtml}}
|
|
<button type="submit" class="ui red small button right" name="uid" value="{{.ID}}">{{$.i18n.Tr "org.members.remove"}}</button>
|
|
</form>
|
|
{{end}}
|
|
<a href="{{.HomeLink}}">
|
|
{{avatar .}}
|
|
{{.DisplayName}}
|
|
</a>
|
|
</div>
|
|
{{else}}
|
|
<div class="item">
|
|
<span class="text grey italic">{{$.i18n.Tr "org.teams.members.none"}}</span>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|