mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Add template func FileSize
This commit is contained in:
		| @@ -121,7 +121,7 @@ func humanateBytes(s uint64, base float64, sizes []string) string { | |||||||
| } | } | ||||||
|  |  | ||||||
| // FileSize calculates the file size and generate user-friendly string. | // FileSize calculates the file size and generate user-friendly string. | ||||||
| func FileSize(s uint64) string { | func FileSize(s int64) string { | ||||||
| 	sizes := []string{"B", "KB", "MB", "GB", "TB", "PB", "EB"} | 	sizes := []string{"B", "KB", "MB", "GB", "TB", "PB", "EB"} | ||||||
| 	return humanateBytes(uint64(s), 1024, sizes) | 	return humanateBytes(uint64(s), 1024, sizes) | ||||||
| } | } | ||||||
|   | |||||||
| @@ -47,7 +47,7 @@ | |||||||
|                     {{if .IsDir}} |                     {{if .IsDir}} | ||||||
|                     <a href="/{{$username}}/{{$reponame}}/tree/{{$branchname}}/{{.Path}}">{{.Name}}</a> |                     <a href="/{{$username}}/{{$reponame}}/tree/{{$branchname}}/{{.Path}}">{{.Name}}</a> | ||||||
|                     {{else}} |                     {{else}} | ||||||
|                     <a href="#">{{.Name}} - {{.Size}}</a> |                     <a href="#">{{.Name}} - {{FileSize .Size}}</a> | ||||||
|                     {{end}}</td> |                     {{end}}</td> | ||||||
| 	                <td class="date"><time datetime="{{.Created}}" data-title="true" title="{{.Created}}">{{TimeSince .Created}}</time></td> | 	                <td class="date"><time datetime="{{.Created}}" data-title="true" title="{{.Created}}">{{TimeSince .Created}}</time></td> | ||||||
| 	                <td class="text">{{.Message}}</td> | 	                <td class="text">{{.Message}}</td> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user