You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							184 lines
						
					
					
						
							9.3 KiB
						
					
					
				
			
		
		
	
	
							184 lines
						
					
					
						
							9.3 KiB
						
					
					
				| {{template "base/head" .}}
 | |
| <div class="repository commits">
 | |
| 	{{template "repo/header" .}}
 | |
| 	<div class="ui container">
 | |
| 		<h2 class="ui header">{{.DateFrom}} - {{.DateUntil}}
 | |
| 			<div class="ui right">
 | |
| 				<!-- Period -->
 | |
| 				<div class="ui floating dropdown jump filter">
 | |
| 					<div class="ui basic compact button">
 | |
| 						<span class="text">
 | |
| 							{{.i18n.Tr "repo.activity.period.filter_label"}} <strong>{{.PeriodText}}</strong>
 | |
| 							<i class="dropdown icon"></i>
 | |
| 						</span>
 | |
| 					</div>
 | |
| 					<div class="menu">
 | |
| 						<a class="{{if eq .Period "daily"}}active {{end}}item" href="{{$.RepoLink}}/activity/daily">{{.i18n.Tr "repo.activity.period.daily"}}</a>
 | |
| 						<a class="{{if eq .Period "halfweekly"}}active {{end}}item" href="{{$.RepoLink}}/activity/halfweekly">{{.i18n.Tr "repo.activity.period.halfweekly"}}</a>
 | |
| 						<a class="{{if eq .Period "weekly"}}active {{end}}item" href="{{$.RepoLink}}/activity/weekly">{{.i18n.Tr "repo.activity.period.weekly"}}</a>
 | |
| 						<a class="{{if eq .Period "monthly"}}active {{end}}item" href="{{$.RepoLink}}/activity/monthly">{{.i18n.Tr "repo.activity.period.monthly"}}</a>
 | |
| 					</div>
 | |
| 				</div>
 | |
| 			</div>
 | |
| 		</h2>
 | |
| 		<div class="ui divider"></div>
 | |
| 
 | |
| 		{{if (or (.Repository.UnitEnabled $.UnitTypeIssues) (.Repository.UnitEnabled $.UnitTypePullRequests))}}
 | |
| 		<h4 class="ui top attached header">{{.i18n.Tr "repo.activity.overview"}}</h4>
 | |
| 		<div class="ui attached segment two column grid">
 | |
| 			{{if .Repository.UnitEnabled $.UnitTypePullRequests}}
 | |
| 				<div class="column">
 | |
| 					{{if gt .Activity.ActivePRCount 0}}
 | |
| 					<div class="stats-table">
 | |
| 						<a href="#merged-pull-requests" class="table-cell tiny background purple" style="width: {{.Activity.MergedPRPerc}}%"></a>
 | |
| 						<a href="#proposed-pull-requests" class="table-cell tiny background green"></a>
 | |
| 					</div>
 | |
| 					{{end}}
 | |
| 					{{.i18n.Tr (TrN .i18n.Lang .Activity.ActivePRCount "repo.activity.active_prs_count_1" "repo.activity.active_prs_count_n") .Activity.ActivePRCount | Safe }}
 | |
| 				</div>
 | |
| 			{{end}}
 | |
| 			{{if .Repository.UnitEnabled $.UnitTypeIssues}}
 | |
| 				<div class="column">
 | |
| 					{{if gt .Activity.ActiveIssueCount 0}}
 | |
| 					<div class="stats-table">
 | |
| 						<a href="#closed-issues" class="table-cell tiny background red" style="width: {{.Activity.ClosedIssuePerc}}%"></a>
 | |
| 						<a href="#new-issues" class="table-cell tiny background green"></a>
 | |
| 					</div>
 | |
| 					{{end}}
 | |
| 					{{.i18n.Tr (TrN .i18n.Lang .Activity.ActiveIssueCount "repo.activity.active_issues_count_1" "repo.activity.active_issues_count_n") .Activity.ActiveIssueCount | Safe }}
 | |
| 				</div>
 | |
| 			{{end}}
 | |
| 		</div>
 | |
| 		<div class="ui attached segment horizontal segments">
 | |
| 			{{if .Repository.UnitEnabled $.UnitTypePullRequests}}
 | |
| 				<a href="#merged-pull-requests" class="ui attached segment text center">
 | |
| 					<i class="text purple octicon octicon-git-pull-request"></i> <strong>{{.Activity.MergedPRCount}}</strong><br>
 | |
| 					{{.i18n.Tr (TrN .i18n.Lang .Activity.MergedPRCount "repo.activity.merged_prs_count_1" "repo.activity.merged_prs_count_n") }}
 | |
| 				</a>
 | |
| 				<a href="#proposed-pull-requests" class="ui attached segment text center">
 | |
| 					<i class="text green octicon octicon-git-branch"></i> <strong>{{.Activity.OpenedPRCount}}</strong><br>
 | |
| 					{{.i18n.Tr (TrN .i18n.Lang .Activity.OpenedPRCount "repo.activity.opened_prs_count_1" "repo.activity.opened_prs_count_n") }}
 | |
| 				</a>
 | |
| 			{{end}}
 | |
| 			{{if .Repository.UnitEnabled $.UnitTypeIssues}}
 | |
| 				<a href="#closed-issues" class="ui attached segment text center">
 | |
| 					<i class="text red octicon octicon-issue-closed"></i> <strong>{{.Activity.ClosedIssueCount}}</strong><br>
 | |
| 					{{.i18n.Tr (TrN .i18n.Lang .Activity.ClosedIssueCount "repo.activity.closed_issues_count_1" "repo.activity.closed_issues_count_n") }}
 | |
| 				</a>
 | |
| 				<a href="#new-issues" class="ui attached segment text center">
 | |
| 					<i class="text green octicon octicon-issue-opened"></i> <strong>{{.Activity.OpenedIssueCount}}</strong><br>
 | |
| 					{{.i18n.Tr (TrN .i18n.Lang .Activity.OpenedIssueCount "repo.activity.new_issues_count_1" "repo.activity.new_issues_count_n") }}
 | |
| 				</a>
 | |
| 			{{end}}
 | |
| 		</div>
 | |
| 		{{end}}
 | |
| 
 | |
| 		{{if gt .Activity.PublishedReleaseCount 0}}
 | |
| 			<h4 class="ui horizontal divider header" id="published-releases">
 | |
| 				<i class="text octicon octicon-tag"></i>
 | |
| 				{{.i18n.Tr "repo.activity.title.releases_published_by" (.i18n.Tr (TrN .i18n.Lang .Activity.PublishedReleaseCount "repo.activity.title.releases_1" "repo.activity.title.releases_n") .Activity.PublishedReleaseCount) (.i18n.Tr (TrN .i18n.Lang .Activity.PublishedReleaseAuthorCount "repo.activity.title.user_1" "repo.activity.title.user_n") .Activity.PublishedReleaseAuthorCount) }}
 | |
| 			</h4>
 | |
| 			<div class="list">
 | |
| 				{{range .Activity.PublishedReleases}}
 | |
| 					<p class="desc">
 | |
| 						<div class="ui green label">{{$.i18n.Tr "repo.activity.published_release_label"}}</div>
 | |
| 						{{.TagName}}
 | |
| 						{{if not .IsTag}}
 | |
| 							<a class="title has-emoji" href="{{$.Repository.HTMLURL}}/src/{{.TagName}}">{{.Title}}</a>
 | |
| 						{{end}}
 | |
| 						{{TimeSince .Created $.Lang}}
 | |
| 					</p>
 | |
| 				{{end}}
 | |
| 			</div>
 | |
| 		{{end}}
 | |
| 
 | |
| 		{{if gt .Activity.MergedPRCount 0}}
 | |
| 			<h4 class="ui horizontal divider header" id="merged-pull-requests">
 | |
| 				<i class="text octicon octicon-git-pull-request"></i>
 | |
| 				{{.i18n.Tr "repo.activity.title.prs_merged_by" (.i18n.Tr (TrN .i18n.Lang .Activity.MergedPRCount "repo.activity.title.prs_1" "repo.activity.title.prs_n") .Activity.MergedPRCount) (.i18n.Tr (TrN .i18n.Lang .Activity.MergedPRAuthorCount "repo.activity.title.user_1" "repo.activity.title.user_n") .Activity.MergedPRAuthorCount) }}
 | |
| 			</h4>
 | |
| 			<div class="list">
 | |
| 				{{range .Activity.MergedPRs}}
 | |
| 					<p class="desc">
 | |
| 						<div class="ui purple label">{{$.i18n.Tr "repo.activity.merged_prs_label"}}</div>
 | |
| 						#{{.Index}} <a class="title has-emoji" href="{{$.Repository.HTMLURL}}/pulls/{{.Index}}">{{.Issue.Title}}</a>
 | |
| 						{{TimeSince .Merged $.Lang}}
 | |
| 					</p>
 | |
| 				{{end}}
 | |
| 			</div>
 | |
| 		{{end}}
 | |
| 
 | |
| 		{{if gt .Activity.OpenedPRCount 0}}
 | |
| 			<h4 class="ui horizontal divider header" id="proposed-pull-requests">
 | |
| 				<i class="text octicon octicon-git-branch"></i>
 | |
| 				{{.i18n.Tr "repo.activity.title.prs_opened_by" (.i18n.Tr (TrN .i18n.Lang .Activity.OpenedPRCount "repo.activity.title.prs_1" "repo.activity.title.prs_n") .Activity.OpenedPRCount) (.i18n.Tr (TrN .i18n.Lang .Activity.OpenedPRAuthorCount "repo.activity.title.user_1" "repo.activity.title.user_n") .Activity.OpenedPRAuthorCount) }}
 | |
| 			</h4>
 | |
| 			<div class="list">
 | |
| 				{{range .Activity.OpenedPRs}}
 | |
| 					<p class="desc">
 | |
| 						<div class="ui green label">{{$.i18n.Tr "repo.activity.opened_prs_label"}}</div>
 | |
| 						#{{.Index}} <a class="title has-emoji" href="{{$.Repository.HTMLURL}}/pulls/{{.Index}}">{{.Issue.Title}}</a>
 | |
| 						{{TimeSince .Issue.Created $.Lang}}
 | |
| 					</p>
 | |
| 				{{end}}
 | |
| 			</div>
 | |
| 		{{end}}
 | |
| 
 | |
| 		{{if gt .Activity.ClosedIssueCount 0}}
 | |
| 			<h4 class="ui horizontal divider header" id="closed-issues">
 | |
| 				<i class="text octicon octicon-issue-closed"></i>
 | |
| 				{{.i18n.Tr "repo.activity.title.issues_closed_by" (.i18n.Tr (TrN .i18n.Lang .Activity.ClosedIssueCount "repo.activity.title.issues_1" "repo.activity.title.issues_n") .Activity.ClosedIssueCount) (.i18n.Tr (TrN .i18n.Lang .Activity.ClosedIssueAuthorCount "repo.activity.title.user_1" "repo.activity.title.user_n") .Activity.ClosedIssueAuthorCount) }}
 | |
| 			</h4>
 | |
| 			<div class="list">
 | |
| 				{{range .Activity.ClosedIssues}}
 | |
| 					<p class="desc">
 | |
| 						<div class="ui red label">{{$.i18n.Tr "repo.activity.closed_issue_label"}}</div>
 | |
| 						#{{.Index}} <a class="title has-emoji" href="{{$.Repository.HTMLURL}}/issues/{{.Index}}">{{.Title}}</a>
 | |
| 						{{TimeSince .Updated $.Lang}}
 | |
| 					</p>
 | |
| 				{{end}}
 | |
| 			</div>
 | |
| 		{{end}}
 | |
| 
 | |
| 		{{if gt .Activity.OpenedIssueCount 0}}
 | |
| 			<h4 class="ui horizontal divider header" id="new-issues">
 | |
| 				<i class="text octicon octicon-issue-opened"></i>
 | |
| 				{{.i18n.Tr "repo.activity.title.issues_created_by" (.i18n.Tr (TrN .i18n.Lang .Activity.OpenedIssueCount "repo.activity.title.issues_1" "repo.activity.title.issues_n") .Activity.OpenedIssueCount) (.i18n.Tr (TrN .i18n.Lang .Activity.OpenedIssueAuthorCount "repo.activity.title.user_1" "repo.activity.title.user_n") .Activity.OpenedIssueAuthorCount) }}
 | |
| 			</h4>
 | |
| 			<div class="list">
 | |
| 				{{range .Activity.OpenedIssues}}
 | |
| 					<p class="desc">
 | |
| 						<div class="ui green label">{{$.i18n.Tr "repo.activity.new_issue_label"}}</div>
 | |
| 						#{{.Index}} <a class="title has-emoji" href="{{$.Repository.HTMLURL}}/issues/{{.Index}}">{{.Title}}</a>
 | |
| 						{{TimeSince .Created $.Lang}}
 | |
| 					</p>
 | |
| 				{{end}}
 | |
| 			</div>
 | |
| 		{{end}}
 | |
| 
 | |
| 		{{if gt .Activity.UnresolvedIssueCount 0}}
 | |
| 			<h4 class="ui horizontal divider header" id="unresolved-conversations">
 | |
| 				<i class="text octicon octicon-comment-discussion"></i>
 | |
| 				{{.i18n.Tr (TrN .i18n.Lang .Activity.UnresolvedIssueCount "repo.activity.title.unresolved_conv_1" "repo.activity.title.unresolved_conv_n") .Activity.UnresolvedIssueCount }}
 | |
| 			</h4>
 | |
| 			<div class="text center desc">
 | |
| 				{{.i18n.Tr "repo.activity.unresolved_conv_desc"}}
 | |
| 			</div>
 | |
| 			<div class="list">
 | |
| 				{{range .Activity.UnresolvedIssues}}
 | |
| 					<p class="desc">
 | |
| 						<div class="ui green label">{{$.i18n.Tr "repo.activity.unresolved_conv_label"}}</div>
 | |
| 						#{{.Index}}
 | |
| 						{{if .IsPull}}
 | |
| 						<a class="title has-emoji" href="{{$.Repository.HTMLURL}}/pulls/{{.Index}}">{{.Title}}</a>
 | |
| 						{{else}}
 | |
| 						<a class="title has-emoji" href="{{$.Repository.HTMLURL}}/issues/{{.Index}}">{{.Title}}</a>
 | |
| 						{{end}}
 | |
| 						{{TimeSince .Updated $.Lang}}
 | |
| 					</p>
 | |
| 				{{end}}
 | |
| 			</div>
 | |
| 		{{end}}
 | |
| 	</div>
 | |
| </div>
 | |
| {{template "base/footer" .}}
 | |
| 
 |