* 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
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
{{template "base/head" .}}
 | 
						|
<div class="page-content user settings organization">
 | 
						|
	{{template "user/settings/navbar" .}}
 | 
						|
	<div class="ui container">
 | 
						|
		{{template "base/alert" .}}
 | 
						|
		<h4 class="ui top attached header">
 | 
						|
			{{.i18n.Tr "settings.orgs"}}
 | 
						|
			{{if .SignedUser.CanCreateOrganization}}
 | 
						|
			<div class="ui right">
 | 
						|
				<a class="ui blue tiny button" href="{{AppSubUrl}}/org/create">{{.i18n.Tr "admin.orgs.new_orga"}}</a>
 | 
						|
			</div>
 | 
						|
			{{end}}
 | 
						|
		</h4>
 | 
						|
		<div class="ui attached segment orgs">
 | 
						|
			{{if .Orgs}}
 | 
						|
				<div class="ui middle aligned divided list">
 | 
						|
					{{range .Orgs}}
 | 
						|
					<div class="item">
 | 
						|
						<div class="right floated content">
 | 
						|
							<form method="post" action="{{AppSubUrl}}/org/{{.Name}}/members/action/leave">
 | 
						|
								{{$.CsrfTokenHtml}}
 | 
						|
								<button type="submit" class="ui blue small button" name="uid" value="{{.ID}}">{{$.i18n.Tr "org.members.leave"}}</button>
 | 
						|
							</form>
 | 
						|
						</div>
 | 
						|
						{{avatar . 28 "mini"}}
 | 
						|
						<div class="content">
 | 
						|
								<a href="{{.HomeLink}}">{{.Name}}</a>
 | 
						|
						</div>
 | 
						|
					</div>
 | 
						|
					{{end}}
 | 
						|
				</div>
 | 
						|
			{{else}}
 | 
						|
				{{.i18n.Tr "settings.orgs_none"}}
 | 
						|
			{{end}}
 | 
						|
		</div>
 | 
						|
	</div>
 | 
						|
</div>
 | 
						|
{{template "base/footer" .}}
 |