mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 16:51:17 +03:00
da2585c11e
This commit improves templates readability, since all of them use consistent indent with all template command blocks indented too. 1. Indents both HTML containers such as <div>, <p> and Go HTML template blocks such as {{if}} {{with}} 2. Cleans all trailing white-space 3. Adds trailing last line-break to each file
47 lines
1.6 KiB
Cheetah
47 lines
1.6 KiB
Cheetah
{{template "base/head" .}}
|
|
<div class="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">
|
|
<div class="ui top attached header">
|
|
{{.i18n.Tr "org.teams.members"}}
|
|
</div>
|
|
<div class="ui attached table segment members">
|
|
{{range .Team.Members}}
|
|
<div class="item">
|
|
{{if $.IsOrganizationOwner}}
|
|
<a class="ui red small button right" href="{{$.OrgLink}}/teams/{{$.Team.LowerName}}/action/remove?uid={{.Id}}">{{$.i18n.Tr "org.members.remove"}}</a>
|
|
{{end}}
|
|
<a href="{{.HomeLink}}">
|
|
<img class="ui avatar image" src="{{.AvatarLink}}">
|
|
{{.DisplayName}}
|
|
</a>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
{{if .IsOrganizationOwner}}
|
|
<div class="ui bottom 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">
|
|
<div class="ui input">
|
|
<input class="prompt" name="uname" placeholder="{{.i18n.Tr "repo.settings.search_user_placeholder"}}" autocomplete="off" required>
|
|
</div>
|
|
<div class="ui segment results hide"></div>
|
|
</div>
|
|
</div>
|
|
<button class="ui green button">{{.i18n.Tr "org.teams.add_team_member"}}</button>
|
|
</form>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|