* ui: remove the divider between heatmap and feeds in the dashboard view * this commit reverses6ccd19ef86Signed-off-by: surtur <a_mirre@utb.cz> * add a divider to the default user dashboard view * another one-line change, this time as a direct complement of 2bfc71614c0c5470162825a21c13838e15ccf5a6 to implement a divider of sorts (as per6ccd19ef86originally) Signed-off-by: surtur <a_mirre@utb.cz> * removed the divider in heatmap.tmpl * the separator is added by partial templates as needed Signed-off-by: surtur <a_mirre@utb.cz> * load proper dashboard template code in profile.tmpl * as discussed in Discord * includes a divider of its own Signed-off-by: surtur <a_mirre@utb.cz>
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			519 B
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			519 B
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
{{template "base/head" .}}
 | 
						|
<div class="dashboard feeds">
 | 
						|
	{{template "user/dashboard/navbar" .}}
 | 
						|
	<div class="ui container">
 | 
						|
		{{template "base/alert" .}}
 | 
						|
		<div class="ui mobile reversed stackable grid">
 | 
						|
			<div class="ui container ten wide column">
 | 
						|
				{{if .EnableHeatmap}}
 | 
						|
					{{template "user/dashboard/heatmap" .}}
 | 
						|
					<div class="ui divider"></div>
 | 
						|
				{{end}}
 | 
						|
				{{template "user/dashboard/feeds" .}}
 | 
						|
			</div>
 | 
						|
			{{template "user/dashboard/repolist" .}}
 | 
						|
		</div>
 | 
						|
	</div>
 | 
						|
</div>
 | 
						|
{{template "base/footer" .}}
 |