mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	| @@ -1,53 +1,53 @@ | |||||||
| 	{{template "base/alert" .}} | {{template "base/alert" .}} | ||||||
| 	<form class="ui form ignore-dirty"> | <form class="ui form ignore-dirty"> | ||||||
| 		<div class="ui fluid action input"> | 	<div class="ui fluid action input"> | ||||||
| 			{{template "shared/searchinput" dict "locale" .locale "Value" .Query "AutoFocus" true}} | 		{{template "shared/searchinput" dict "locale" .locale "Value" .Query "AutoFocus" true}} | ||||||
| 			<select class="ui dropdown" name="type"> | 		<select class="ui dropdown" name="type"> | ||||||
| 				<option value="">{{.locale.Tr "packages.filter.type"}}</option> | 			<option value="">{{.locale.Tr "packages.filter.type"}}</option> | ||||||
| 				<option value="all">{{.locale.Tr "packages.filter.type.all"}}</option> | 			<option value="all">{{.locale.Tr "packages.filter.type.all"}}</option> | ||||||
| 				{{range $type := .AvailableTypes}} | 			{{range $type := .AvailableTypes}} | ||||||
| 				<option{{if eq $.PackageType $type}} selected="selected"{{end}} value="{{$type}}">{{$type.Name}}</option> | 			<option{{if eq $.PackageType $type}} selected="selected"{{end}} value="{{$type}}">{{$type.Name}}</option> | ||||||
| 				{{end}} |  | ||||||
| 			</select> |  | ||||||
| 			<button class="ui primary button">{{.locale.Tr "explore.search"}}</button> |  | ||||||
| 		</div> |  | ||||||
| 	</form> |  | ||||||
| 	<div class="ui {{if .PackageDescriptors}}issue list{{end}}"> |  | ||||||
| 		{{range .PackageDescriptors}} |  | ||||||
| 			<li class="item gt-df gt-py-3"> |  | ||||||
| 				<div class="issue-item-main"> |  | ||||||
| 					<div class="issue-item-top-row"> |  | ||||||
| 						<a class="title" href="{{.FullWebLink}}">{{.Package.Name}}</a> |  | ||||||
| 						<span class="ui label">{{svg .Package.Type.SVGName 16}} {{.Package.Type.Name}}</span> |  | ||||||
| 					</div> |  | ||||||
| 					<div class="desc issue-item-bottom-row"> |  | ||||||
| 						{{$timeStr := TimeSinceUnix .Version.CreatedUnix $.locale}} |  | ||||||
| 						{{$hasRepositoryAccess := false}} |  | ||||||
| 						{{if .Repository}} |  | ||||||
| 							{{$hasRepositoryAccess = index $.RepositoryAccessMap .Repository.ID}} |  | ||||||
| 						{{end}} |  | ||||||
| 						{{if $hasRepositoryAccess}} |  | ||||||
| 							{{$.locale.Tr "packages.published_by_in" $timeStr .Creator.HomeLink (.Creator.GetDisplayName | Escape) .Repository.Link (.Repository.FullName | Escape) | Safe}} |  | ||||||
| 						{{else}} |  | ||||||
| 							{{$.locale.Tr "packages.published_by" $timeStr .Creator.HomeLink (.Creator.GetDisplayName | Escape) | Safe}} |  | ||||||
| 						{{end}} |  | ||||||
| 					</div> |  | ||||||
| 				</div> |  | ||||||
| 			</li> |  | ||||||
| 		{{else}} |  | ||||||
| 			{{if not .HasPackages}} |  | ||||||
| 				<div class="gt-pt-5 empty center"> |  | ||||||
| 					{{svg "octicon-package" 48}} |  | ||||||
| 					<h2>{{.locale.Tr "packages.empty"}}</h2> |  | ||||||
| 					{{if and .Repository .CanWritePackages}} |  | ||||||
| 						{{$packagesUrl := URLJoin .Owner.HomeLink "-" "packages"}} |  | ||||||
| 						<p>{{.locale.Tr "packages.empty.repo" $packagesUrl | Safe}}</p> |  | ||||||
| 					{{end}} |  | ||||||
| 					<p>{{.locale.Tr "packages.empty.documentation" "https://docs.gitea.io/en-us/usage/packages/overview/" | Safe}}</p> |  | ||||||
| 				</div> |  | ||||||
| 			{{else}} |  | ||||||
| 				<p>{{.locale.Tr "packages.filter.no_result"}}</p> |  | ||||||
| 			{{end}} | 			{{end}} | ||||||
| 		{{end}} | 		</select> | ||||||
| 		{{template "base/paginate" .}} | 		<button class="ui primary button">{{.locale.Tr "explore.search"}}</button> | ||||||
| 	</div> | 	</div> | ||||||
|  | </form> | ||||||
|  | <div class="ui {{if .PackageDescriptors}}issue list{{end}}"> | ||||||
|  | 	{{range .PackageDescriptors}} | ||||||
|  | 		<li class="item gt-df gt-py-3"> | ||||||
|  | 			<div class="issue-item-main"> | ||||||
|  | 				<div class="issue-item-top-row"> | ||||||
|  | 					<a class="title" href="{{.FullWebLink}}">{{.Package.Name}}</a> | ||||||
|  | 					<span class="ui label">{{svg .Package.Type.SVGName 16}} {{.Package.Type.Name}}</span> | ||||||
|  | 				</div> | ||||||
|  | 				<div class="desc issue-item-bottom-row"> | ||||||
|  | 					{{$timeStr := TimeSinceUnix .Version.CreatedUnix $.locale}} | ||||||
|  | 					{{$hasRepositoryAccess := false}} | ||||||
|  | 					{{if .Repository}} | ||||||
|  | 						{{$hasRepositoryAccess = index $.RepositoryAccessMap .Repository.ID}} | ||||||
|  | 					{{end}} | ||||||
|  | 					{{if $hasRepositoryAccess}} | ||||||
|  | 						{{$.locale.Tr "packages.published_by_in" $timeStr .Creator.HomeLink (.Creator.GetDisplayName | Escape) .Repository.Link (.Repository.FullName | Escape) | Safe}} | ||||||
|  | 					{{else}} | ||||||
|  | 						{{$.locale.Tr "packages.published_by" $timeStr .Creator.HomeLink (.Creator.GetDisplayName | Escape) | Safe}} | ||||||
|  | 					{{end}} | ||||||
|  | 				</div> | ||||||
|  | 			</div> | ||||||
|  | 		</li> | ||||||
|  | 	{{else}} | ||||||
|  | 		{{if not .HasPackages}} | ||||||
|  | 			<div class="gt-pt-5 empty center"> | ||||||
|  | 				{{svg "octicon-package" 48}} | ||||||
|  | 				<h2>{{.locale.Tr "packages.empty"}}</h2> | ||||||
|  | 				{{if and .Repository .CanWritePackages}} | ||||||
|  | 					{{$packagesUrl := URLJoin .Owner.HomeLink "-" "packages"}} | ||||||
|  | 					<p>{{.locale.Tr "packages.empty.repo" $packagesUrl | Safe}}</p> | ||||||
|  | 				{{end}} | ||||||
|  | 				<p>{{.locale.Tr "packages.empty.documentation" "https://docs.gitea.io/en-us/usage/packages/overview/" | Safe}}</p> | ||||||
|  | 			</div> | ||||||
|  | 		{{else}} | ||||||
|  | 			<p>{{.locale.Tr "packages.filter.no_result"}}</p> | ||||||
|  | 		{{end}} | ||||||
|  | 	{{end}} | ||||||
|  | 	{{template "base/paginate" .}} | ||||||
|  | </div> | ||||||
|   | |||||||
| @@ -1,37 +1,37 @@ | |||||||
| 	<p><a href="{{.PackageDescriptor.PackageWebLink}}">{{.PackageDescriptor.Package.Name}}</a> / <strong>{{.locale.Tr "packages.versions"}}</strong></p> | <p><a href="{{.PackageDescriptor.PackageWebLink}}">{{.PackageDescriptor.Package.Name}}</a> / <strong>{{.locale.Tr "packages.versions"}}</strong></p> | ||||||
| 	<form class="ui form ignore-dirty"> | <form class="ui form ignore-dirty"> | ||||||
| 		<div class="ui fluid action input"> | 	<div class="ui fluid action input"> | ||||||
| 			{{template "shared/searchinput" dict "locale" .locale "Value" .Query "AutoFocus" true}} | 		{{template "shared/searchinput" dict "locale" .locale "Value" .Query "AutoFocus" true}} | ||||||
| 			<select class="ui dropdown" name="sort"> | 		<select class="ui dropdown" name="sort"> | ||||||
| 				<option value="version_asc"{{if eq .Sort "version_asc"}} selected="selected"{{end}}>{{.locale.Tr "filter.string.asc"}}</option> | 			<option value="version_asc"{{if eq .Sort "version_asc"}} selected="selected"{{end}}>{{.locale.Tr "filter.string.asc"}}</option> | ||||||
| 				<option value="version_desc"{{if eq .Sort "version_desc"}} selected="selected"{{end}}>{{.locale.Tr "filter.string.desc"}}</option> | 			<option value="version_desc"{{if eq .Sort "version_desc"}} selected="selected"{{end}}>{{.locale.Tr "filter.string.desc"}}</option> | ||||||
| 				<option value="created_asc"{{if eq .Sort "created_asc"}} selected="selected"{{end}}>{{.locale.Tr "repo.issues.filter_sort.oldest"}}</option> | 			<option value="created_asc"{{if eq .Sort "created_asc"}} selected="selected"{{end}}>{{.locale.Tr "repo.issues.filter_sort.oldest"}}</option> | ||||||
| 				<option value="created_desc"{{if or (eq .Sort "") (eq .Sort "created_desc")}} selected="selected"{{end}}>{{.locale.Tr "repo.issues.filter_sort.latest"}}</option> | 			<option value="created_desc"{{if or (eq .Sort "") (eq .Sort "created_desc")}} selected="selected"{{end}}>{{.locale.Tr "repo.issues.filter_sort.latest"}}</option> | ||||||
| 			</select> | 		</select> | ||||||
| 			{{if eq .PackageDescriptor.Package.Type "container"}} | 		{{if eq .PackageDescriptor.Package.Type "container"}} | ||||||
| 			<select class="ui dropdown" name="tagged"> | 		<select class="ui dropdown" name="tagged"> | ||||||
| 				{{$isTagged := or (eq .Tagged "") (eq .Tagged "tagged")}} | 			{{$isTagged := or (eq .Tagged "") (eq .Tagged "tagged")}} | ||||||
| 				<option value="tagged"{{if $isTagged}} selected="selected"{{end}}>{{.locale.Tr "packages.filter.container.tagged"}}</option> | 			<option value="tagged"{{if $isTagged}} selected="selected"{{end}}>{{.locale.Tr "packages.filter.container.tagged"}}</option> | ||||||
| 				<option value="untagged"{{if not $isTagged}} selected="selected"{{end}}>{{.locale.Tr "packages.filter.container.untagged"}}</option> | 			<option value="untagged"{{if not $isTagged}} selected="selected"{{end}}>{{.locale.Tr "packages.filter.container.untagged"}}</option> | ||||||
| 			</select> | 		</select> | ||||||
| 			{{end}} |  | ||||||
| 			<button class="ui primary button">{{.locale.Tr "explore.search"}}</button> |  | ||||||
| 		</div> |  | ||||||
| 	</form> |  | ||||||
| 	<div class="ui {{if .PackageDescriptors}}issue list{{end}}"> |  | ||||||
| 		{{range .PackageDescriptors}} |  | ||||||
| 			<li class="item gt-df gt-py-3"> |  | ||||||
| 				<div class="issue-item-main"> |  | ||||||
| 					<div class="issue-item-top-row"> |  | ||||||
| 						<a class="title" href="{{.FullWebLink}}">{{.Version.LowerVersion}}</a> |  | ||||||
| 					</div> |  | ||||||
| 					<div class="desc issue-item-bottom-row"> |  | ||||||
| 						{{$.locale.Tr "packages.published_by" (TimeSinceUnix .Version.CreatedUnix $.locale) .Creator.HomeLink (.Creator.GetDisplayName | Escape) | Safe}} |  | ||||||
| 					</div> |  | ||||||
| 				</div> |  | ||||||
| 			</li> |  | ||||||
| 		{{else}} |  | ||||||
| 			<p>{{.locale.Tr "packages.filter.no_result"}}</p> |  | ||||||
| 		{{end}} | 		{{end}} | ||||||
| 		{{template "base/paginate" .}} | 		<button class="ui primary button">{{.locale.Tr "explore.search"}}</button> | ||||||
| 	</div> | 	</div> | ||||||
|  | </form> | ||||||
|  | <div class="ui {{if .PackageDescriptors}}issue list{{end}}"> | ||||||
|  | 	{{range .PackageDescriptors}} | ||||||
|  | 		<li class="item gt-df gt-py-3"> | ||||||
|  | 			<div class="issue-item-main"> | ||||||
|  | 				<div class="issue-item-top-row"> | ||||||
|  | 					<a class="title" href="{{.FullWebLink}}">{{.Version.LowerVersion}}</a> | ||||||
|  | 				</div> | ||||||
|  | 				<div class="desc issue-item-bottom-row"> | ||||||
|  | 					{{$.locale.Tr "packages.published_by" (TimeSinceUnix .Version.CreatedUnix $.locale) .Creator.HomeLink (.Creator.GetDisplayName | Escape) | Safe}} | ||||||
|  | 				</div> | ||||||
|  | 			</div> | ||||||
|  | 		</li> | ||||||
|  | 	{{else}} | ||||||
|  | 		<p>{{.locale.Tr "packages.filter.no_result"}}</p> | ||||||
|  | 	{{end}} | ||||||
|  | 	{{template "base/paginate" .}} | ||||||
|  | </div> | ||||||
|   | |||||||
| @@ -1,76 +1,76 @@ | |||||||
| 		{{if .CanWriteProjects}} | {{if .CanWriteProjects}} | ||||||
| 			<div class="gt-tr"> | 	<div class="gt-tr"> | ||||||
| 				<a class="ui small green button" href="{{$.Link}}/new">{{.locale.Tr "repo.projects.new"}}</a> | 		<a class="ui small green button" href="{{$.Link}}/new">{{.locale.Tr "repo.projects.new"}}</a> | ||||||
| 			</div> | 	</div> | ||||||
| 			<div class="divider"></div> | 	<div class="divider"></div> | ||||||
| 		{{end}} | {{end}} | ||||||
|  |  | ||||||
| 		{{template "base/alert" .}} | {{template "base/alert" .}} | ||||||
| 		<div class="small-menu-items ui compact tiny menu"> | <div class="small-menu-items ui compact tiny menu"> | ||||||
| 			<a class="item{{if not .IsShowClosed}} active{{end}}" href="{{$.Link}}?state=open"> | 	<a class="item{{if not .IsShowClosed}} active{{end}}" href="{{$.Link}}?state=open"> | ||||||
| 				{{svg "octicon-project-symlink" 16 "gt-mr-3"}} | 		{{svg "octicon-project-symlink" 16 "gt-mr-3"}} | ||||||
| 				{{.locale.PrettyNumber .OpenCount}} {{.locale.Tr "repo.issues.open_title"}} | 		{{.locale.PrettyNumber .OpenCount}} {{.locale.Tr "repo.issues.open_title"}} | ||||||
| 			</a> | 	</a> | ||||||
| 			<a class="item{{if .IsShowClosed}} active{{end}}" href="{{$.Link}}?state=closed"> | 	<a class="item{{if .IsShowClosed}} active{{end}}" href="{{$.Link}}?state=closed"> | ||||||
| 				{{svg "octicon-check" 16 "gt-mr-3"}} | 		{{svg "octicon-check" 16 "gt-mr-3"}} | ||||||
| 				{{.locale.PrettyNumber .ClosedCount}} {{.locale.Tr "repo.issues.closed_title"}} | 		{{.locale.PrettyNumber .ClosedCount}} {{.locale.Tr "repo.issues.closed_title"}} | ||||||
| 			</a> | 	</a> | ||||||
|  | </div> | ||||||
|  |  | ||||||
|  | <div class="ui right floated secondary filter menu"> | ||||||
|  | 	<!-- Sort --> | ||||||
|  | 	<div class="ui dropdown type jump item"> | ||||||
|  | 		<span class="text"> | ||||||
|  | 			{{.locale.Tr "repo.issues.filter_sort"}} | ||||||
|  | 			{{svg "octicon-triangle-down" 14 "dropdown icon"}} | ||||||
|  | 		</span> | ||||||
|  | 		<div class="menu"> | ||||||
|  | 			<a class="{{if eq .SortType "oldest"}}active {{end}}item" href="{{$.Link}}?q={{$.Keyword}}&sort=oldest&state={{$.State}}">{{.locale.Tr "repo.issues.filter_sort.oldest"}}</a> | ||||||
|  | 			<a class="{{if eq .SortType "recentupdate"}}active {{end}}item" href="{{$.Link}}?q={{$.Keyword}}&sort=recentupdate&state={{$.State}}">{{.locale.Tr "repo.issues.filter_sort.recentupdate"}}</a> | ||||||
|  | 			<a class="{{if eq .SortType "leastupdate"}}active {{end}}item" href="{{$.Link}}?q={{$.Keyword}}&sort=leastupdate&state={{$.State}}">{{.locale.Tr "repo.issues.filter_sort.leastupdate"}}</a> | ||||||
| 		</div> | 		</div> | ||||||
|  | 	</div> | ||||||
| 		<div class="ui right floated secondary filter menu"> | </div> | ||||||
| 			<!-- Sort --> | <div class="milestone-list"> | ||||||
| 			<div class="ui dropdown type jump item"> | 	{{range .Projects}} | ||||||
| 				<span class="text"> | 		<li class="milestone-card"> | ||||||
| 					{{.locale.Tr "repo.issues.filter_sort"}} | 			<h3 class="flex-text-block gt-m-0"> | ||||||
| 					{{svg "octicon-triangle-down" 14 "dropdown icon"}} | 				{{svg .IconName 16}} | ||||||
| 				</span> | 				<a class="muted" href="{{.Link}}">{{.Title}}</a> | ||||||
| 				<div class="menu"> | 			</h3> | ||||||
| 					<a class="{{if eq .SortType "oldest"}}active {{end}}item" href="{{$.Link}}?q={{$.Keyword}}&sort=oldest&state={{$.State}}">{{.locale.Tr "repo.issues.filter_sort.oldest"}}</a> | 			<div class="milestone-toolbar"> | ||||||
| 					<a class="{{if eq .SortType "recentupdate"}}active {{end}}item" href="{{$.Link}}?q={{$.Keyword}}&sort=recentupdate&state={{$.State}}">{{.locale.Tr "repo.issues.filter_sort.recentupdate"}}</a> | 				<div class="group"> | ||||||
| 					<a class="{{if eq .SortType "leastupdate"}}active {{end}}item" href="{{$.Link}}?q={{$.Keyword}}&sort=leastupdate&state={{$.State}}">{{.locale.Tr "repo.issues.filter_sort.leastupdate"}}</a> | 					<div class="flex-text-block"> | ||||||
|  | 						{{svg "octicon-issue-opened" 14}} | ||||||
|  | 						{{$.locale.PrettyNumber .NumOpenIssues}} {{$.locale.Tr "repo.issues.open_title"}} | ||||||
|  | 					</div> | ||||||
|  | 					<div class="flex-text-block"> | ||||||
|  | 						{{svg "octicon-check" 14}} | ||||||
|  | 						{{$.locale.PrettyNumber .NumClosedIssues}} {{$.locale.Tr "repo.issues.closed_title"}} | ||||||
|  | 					</div> | ||||||
| 				</div> | 				</div> | ||||||
| 			</div> | 				{{if and $.CanWriteProjects (not $.Repository.IsArchived)}} | ||||||
| 		</div> | 				<div class="group"> | ||||||
| 		<div class="milestone-list"> | 					<a class="flex-text-inline" href="{{.Link}}/edit">{{svg "octicon-pencil" 14}}{{$.locale.Tr "repo.issues.label_edit"}}</a> | ||||||
| 			{{range .Projects}} | 					{{if .IsClosed}} | ||||||
| 				<li class="milestone-card"> | 						<a class="link-action flex-text-inline" href data-url="{{.Link}}/open">{{svg "octicon-check" 14}}{{$.locale.Tr "repo.projects.open"}}</a> | ||||||
| 					<h3 class="flex-text-block gt-m-0"> | 					{{else}} | ||||||
| 						{{svg .IconName 16}} | 						<a class="link-action flex-text-inline" href data-url="{{.Link}}/close">{{svg "octicon-skip" 14}}{{$.locale.Tr "repo.projects.close"}}</a> | ||||||
| 						<a class="muted" href="{{.Link}}">{{.Title}}</a> |  | ||||||
| 					</h3> |  | ||||||
| 					<div class="milestone-toolbar"> |  | ||||||
| 						<div class="group"> |  | ||||||
| 							<div class="flex-text-block"> |  | ||||||
| 								{{svg "octicon-issue-opened" 14}} |  | ||||||
| 								{{$.locale.PrettyNumber .NumOpenIssues}} {{$.locale.Tr "repo.issues.open_title"}} |  | ||||||
| 							</div> |  | ||||||
| 							<div class="flex-text-block"> |  | ||||||
| 								{{svg "octicon-check" 14}} |  | ||||||
| 								{{$.locale.PrettyNumber .NumClosedIssues}} {{$.locale.Tr "repo.issues.closed_title"}} |  | ||||||
| 							</div> |  | ||||||
| 						</div> |  | ||||||
| 						{{if and $.CanWriteProjects (not $.Repository.IsArchived)}} |  | ||||||
| 						<div class="group"> |  | ||||||
| 							<a class="flex-text-inline" href="{{.Link}}/edit">{{svg "octicon-pencil" 14}}{{$.locale.Tr "repo.issues.label_edit"}}</a> |  | ||||||
| 							{{if .IsClosed}} |  | ||||||
| 								<a class="link-action flex-text-inline" href data-url="{{.Link}}/open">{{svg "octicon-check" 14}}{{$.locale.Tr "repo.projects.open"}}</a> |  | ||||||
| 							{{else}} |  | ||||||
| 								<a class="link-action flex-text-inline" href data-url="{{.Link}}/close">{{svg "octicon-skip" 14}}{{$.locale.Tr "repo.projects.close"}}</a> |  | ||||||
| 							{{end}} |  | ||||||
| 							<a class="delete-button flex-text-inline" href="#" data-url="{{.Link}}/delete">{{svg "octicon-trash" 14}}{{$.locale.Tr "repo.issues.label_delete"}}</a> |  | ||||||
| 						</div> |  | ||||||
| 						{{end}} |  | ||||||
| 					</div> |  | ||||||
| 					{{if .Description}} |  | ||||||
| 					<div class="content"> |  | ||||||
| 						{{.RenderedContent|Str2html}} |  | ||||||
| 					</div> |  | ||||||
| 					{{end}} | 					{{end}} | ||||||
| 				</li> | 					<a class="delete-button flex-text-inline" href="#" data-url="{{.Link}}/delete">{{svg "octicon-trash" 14}}{{$.locale.Tr "repo.issues.label_delete"}}</a> | ||||||
|  | 				</div> | ||||||
|  | 				{{end}} | ||||||
|  | 			</div> | ||||||
|  | 			{{if .Description}} | ||||||
|  | 			<div class="content"> | ||||||
|  | 				{{.RenderedContent|Str2html}} | ||||||
|  | 			</div> | ||||||
| 			{{end}} | 			{{end}} | ||||||
|  | 		</li> | ||||||
|  | 	{{end}} | ||||||
|  |  | ||||||
| 			{{template "base/paginate" .}} | 	{{template "base/paginate" .}} | ||||||
| 		</div> | </div> | ||||||
|  |  | ||||||
| {{if $.CanWriteProjects}} | {{if $.CanWriteProjects}} | ||||||
| <div class="ui g-modal-confirm delete modal"> | <div class="ui g-modal-confirm delete modal"> | ||||||
|   | |||||||
| @@ -1,66 +1,66 @@ | |||||||
| 	<h2 class="ui dividing header"> | <h2 class="ui dividing header"> | ||||||
| 		{{if .PageIsEditProjects}} | 	{{if .PageIsEditProjects}} | ||||||
| 		{{.locale.Tr "repo.projects.edit"}} | 		{{.locale.Tr "repo.projects.edit"}} | ||||||
| 		<div class="sub header">{{.locale.Tr "repo.projects.edit_subheader"}}</div> | 		<div class="sub header">{{.locale.Tr "repo.projects.edit_subheader"}}</div> | ||||||
| 		{{else}} | 	{{else}} | ||||||
| 			{{.locale.Tr "repo.projects.new"}} | 		{{.locale.Tr "repo.projects.new"}} | ||||||
| 			<div class="sub header">{{.locale.Tr "repo.projects.new_subheader"}}</div> | 		<div class="sub header">{{.locale.Tr "repo.projects.new_subheader"}}</div> | ||||||
| 			{{end}} | 	{{end}} | ||||||
| 	</h2> | </h2> | ||||||
| 	{{template "base/alert" .}} | {{template "base/alert" .}} | ||||||
| 	<form class="ui form grid" action="{{.Link}}" method="post"> | <form class="ui form grid" action="{{.Link}}" method="post"> | ||||||
| 		{{.CsrfTokenHtml}} | 	{{.CsrfTokenHtml}} | ||||||
| 		<div class="eleven wide column"> | 	<div class="eleven wide column"> | ||||||
| 			<input type="hidden" id="redirect" name="redirect" value="{{.redirect}}"> | 		<input type="hidden" id="redirect" name="redirect" value="{{.redirect}}"> | ||||||
| 			<div class="field {{if .Err_Title}}error{{end}}"> | 		<div class="field {{if .Err_Title}}error{{end}}"> | ||||||
| 				<label>{{.locale.Tr "repo.projects.title"}}</label> | 			<label>{{.locale.Tr "repo.projects.title"}}</label> | ||||||
| 				<input name="title" placeholder="{{.locale.Tr "repo.projects.title"}}" value="{{.title}}" autofocus required> | 			<input name="title" placeholder="{{.locale.Tr "repo.projects.title"}}" value="{{.title}}" autofocus required> | ||||||
| 			</div> | 		</div> | ||||||
| 			<div class="field"> | 		<div class="field"> | ||||||
| 				<label>{{.locale.Tr "repo.projects.description"}}</label> | 			<label>{{.locale.Tr "repo.projects.description"}}</label> | ||||||
| 				<textarea name="content" placeholder="{{.locale.Tr "repo.projects.description_placeholder"}}">{{.content}}</textarea> | 			<textarea name="content" placeholder="{{.locale.Tr "repo.projects.description_placeholder"}}">{{.content}}</textarea> | ||||||
| 			</div> | 		</div> | ||||||
|  |  | ||||||
| 			{{if not .PageIsEditProjects}} | 		{{if not .PageIsEditProjects}} | ||||||
| 				<div class="field"> | 			<div class="field"> | ||||||
| 					<label>{{.locale.Tr "repo.projects.template.desc"}}</label> | 				<label>{{.locale.Tr "repo.projects.template.desc"}}</label> | ||||||
| 					<div class="ui selection dropdown"> | 				<div class="ui selection dropdown"> | ||||||
| 						<input type="hidden" name="board_type" value="{{.type}}"> | 					<input type="hidden" name="board_type" value="{{.type}}"> | ||||||
| 						<div class="default text">{{.locale.Tr "repo.projects.template.desc_helper"}}</div> | 					<div class="default text">{{.locale.Tr "repo.projects.template.desc_helper"}}</div> | ||||||
| 						<div class="menu"> | 					<div class="menu"> | ||||||
| 							{{range $element := .BoardTypes}} | 						{{range $element := .BoardTypes}} | ||||||
| 								<div class="item" data-id="{{$element.BoardType}}" data-value="{{$element.BoardType}}">{{$.locale.Tr $element.Translation}}</div> | 							<div class="item" data-id="{{$element.BoardType}}" data-value="{{$element.BoardType}}">{{$.locale.Tr $element.Translation}}</div> | ||||||
| 							{{end}} | 						{{end}} | ||||||
| 						</div> |  | ||||||
| 					</div> | 					</div> | ||||||
| 				</div> | 				</div> | ||||||
| 			{{end}} | 			</div> | ||||||
|  | 		{{end}} | ||||||
|  |  | ||||||
| 			<div class="field"> | 		<div class="field"> | ||||||
| 				<label>{{.locale.Tr "repo.projects.card_type.desc"}}</label> | 			<label>{{.locale.Tr "repo.projects.card_type.desc"}}</label> | ||||||
| 				<div class="ui selection dropdown"> | 			<div class="ui selection dropdown"> | ||||||
| 					{{svg "octicon-triangle-down" 14 "dropdown icon"}} | 				{{svg "octicon-triangle-down" 14 "dropdown icon"}} | ||||||
| 					{{range $element := .CardTypes}} | 				{{range $element := .CardTypes}} | ||||||
| 						{{if or (eq $.card_type $element.CardType) (and (not $.PageIsEditProjects) (eq $element.CardType 1))}} | 					{{if or (eq $.card_type $element.CardType) (and (not $.PageIsEditProjects) (eq $element.CardType 1))}} | ||||||
| 							<input type="hidden" name="card_type" value="{{$element.CardType}}"> | 						<input type="hidden" name="card_type" value="{{$element.CardType}}"> | ||||||
| 							<div class="default text">{{$.locale.Tr $element.Translation}}</div> | 						<div class="default text">{{$.locale.Tr $element.Translation}}</div> | ||||||
| 						{{end}} | 					{{end}} | ||||||
|  | 				{{end}} | ||||||
|  | 				<div class="menu"> | ||||||
|  | 					{{range $element := .CardTypes}} | ||||||
|  | 						<div class="item" data-id="{{$element.CardType}}" data-value="{{$element.CardType}}">{{$.locale.Tr $element.Translation}}</div> | ||||||
| 					{{end}} | 					{{end}} | ||||||
| 					<div class="menu"> |  | ||||||
| 						{{range $element := .CardTypes}} |  | ||||||
| 							<div class="item" data-id="{{$element.CardType}}" data-value="{{$element.CardType}}">{{$.locale.Tr $element.Translation}}</div> |  | ||||||
| 						{{end}} |  | ||||||
| 					</div> |  | ||||||
| 				</div> | 				</div> | ||||||
| 			</div> | 			</div> | ||||||
| 		</div> | 		</div> | ||||||
| 			<div class="divider"></div> | 	</div> | ||||||
| 			<div class="ui left"> | 	<div class="divider"></div> | ||||||
| 				<a class="ui cancel button" href="{{$.CancelLink}}"> | 	<div class="ui left"> | ||||||
| 					{{.locale.Tr "repo.milestones.cancel"}} | 		<a class="ui cancel button" href="{{$.CancelLink}}"> | ||||||
| 				</a> | 			{{.locale.Tr "repo.milestones.cancel"}} | ||||||
| 				<button class="ui primary button"> | 		</a> | ||||||
| 					{{if .PageIsEditProjects}}{{.locale.Tr "repo.projects.modify"}}{{else}}{{.locale.Tr "repo.projects.create"}}{{end}} | 		<button class="ui primary button"> | ||||||
| 				</button> | 			{{if .PageIsEditProjects}}{{.locale.Tr "repo.projects.modify"}}{{else}}{{.locale.Tr "repo.projects.create"}}{{end}} | ||||||
| 			</div> | 		</button> | ||||||
| 	</form> | 	</div> | ||||||
|  | </form> | ||||||
|   | |||||||
| @@ -1,256 +1,255 @@ | |||||||
| 		<div class="ui two column stackable grid"> | <div class="ui two column stackable grid"> | ||||||
| 			<div class="column"> | 	<div class="column"> | ||||||
|  | 	</div> | ||||||
|  | 	<div class="column right aligned"> | ||||||
|  | 		{{if .CanWriteProjects}} | ||||||
|  | 			<a class="ui small green button show-modal item" data-modal="#new-board-item">{{.locale.Tr "new_project_column"}}</a> | ||||||
|  | 		{{end}} | ||||||
|  | 		<div class="ui small modal new-board-modal" id="new-board-item"> | ||||||
|  | 			<div class="header"> | ||||||
|  | 				{{$.locale.Tr "repo.projects.column.new"}} | ||||||
| 			</div> | 			</div> | ||||||
| 			<div class="column right aligned"> | 			<div class="content"> | ||||||
| 				{{if .CanWriteProjects}} | 				<form class="ui form"> | ||||||
| 					<a class="ui small green button show-modal item" data-modal="#new-board-item">{{.locale.Tr "new_project_column"}}</a> | 					<div class="required field"> | ||||||
| 				{{end}} | 						<label for="new_board">{{$.locale.Tr "repo.projects.column.new_title"}}</label> | ||||||
| 				<div class="ui small modal new-board-modal" id="new-board-item"> | 						<input class="new-board" id="new_board" name="title" required> | ||||||
| 					<div class="header"> |  | ||||||
| 						{{$.locale.Tr "repo.projects.column.new"}} |  | ||||||
| 					</div> | 					</div> | ||||||
| 					<div class="content"> |  | ||||||
| 						<form class="ui form"> | 					<div class="field color-field"> | ||||||
| 							<div class="required field"> | 						<label for="new_board_color">{{$.locale.Tr "repo.projects.column.color"}}</label> | ||||||
| 								<label for="new_board">{{$.locale.Tr "repo.projects.column.new_title"}}</label> | 						<div class="color picker column"> | ||||||
| 								<input class="new-board" id="new_board" name="title" required> | 							<input class="color-picker" maxlength="7" placeholder="#c320f6" id="new_board_color_picker" name="color"> | ||||||
|  | 							<div class="column precolors"> | ||||||
|  | 								{{template "repo/issue/label_precolors"}} | ||||||
| 							</div> | 							</div> | ||||||
|  |  | ||||||
| 							<div class="field color-field"> |  | ||||||
| 								<label for="new_board_color">{{$.locale.Tr "repo.projects.column.color"}}</label> |  | ||||||
| 								<div class="color picker column"> |  | ||||||
| 									<input class="color-picker" maxlength="7" placeholder="#c320f6" id="new_board_color_picker" name="color"> |  | ||||||
| 									<div class="column precolors"> |  | ||||||
| 										{{template "repo/issue/label_precolors"}} |  | ||||||
| 									</div> |  | ||||||
| 								</div> |  | ||||||
| 							</div> |  | ||||||
|  |  | ||||||
| 							<div class="text right actions"> |  | ||||||
| 								<button class="ui cancel button">{{$.locale.Tr "settings.cancel"}}</button> |  | ||||||
| 								<button data-url="{{$.Link}}" class="ui primary button" id="new_board_submit">{{$.locale.Tr "repo.projects.column.new_submit"}}</button> |  | ||||||
| 							</div> |  | ||||||
| 						</form> |  | ||||||
| 					</div> |  | ||||||
| 				</div> |  | ||||||
| 			</div> |  | ||||||
| 		</div> |  | ||||||
| 		<div class="divider"></div> |  | ||||||
| 		<div class="ui two column stackable grid"> |  | ||||||
| 			<div class="column"> |  | ||||||
| 				<h2 class="project-title">{{$.Project.Title}}</h2> |  | ||||||
| 				<div class="content project-description">{{$.Project.RenderedContent|Str2html}}</div> |  | ||||||
| 			</div> |  | ||||||
| 			{{if $.CanWriteProjects}} |  | ||||||
| 				<div class="column right aligned"> |  | ||||||
| 					<div class="ui compact right mini menu"> |  | ||||||
| 						<a class="item" href="{{$.Link}}/edit?redirect=project"> |  | ||||||
| 							{{svg "octicon-pencil"}} |  | ||||||
| 							<span class="gt-mx-3">{{$.locale.Tr "repo.issues.label_edit"}}</span> |  | ||||||
| 						</a> |  | ||||||
| 						{{if .Project.IsClosed}} |  | ||||||
| 							<a class="item link-action" href data-url="{{$.Link}}/open"> |  | ||||||
| 								{{svg "octicon-check"}} |  | ||||||
| 								<span class="gt-mx-3">{{$.locale.Tr "repo.projects.open"}}</span> |  | ||||||
| 							</a> |  | ||||||
| 						{{else}} |  | ||||||
| 							<a class="item link-action" href data-url="{{$.Link}}/close"> |  | ||||||
| 								{{svg "octicon-skip"}} |  | ||||||
| 								<span class="gt-mx-3">{{$.locale.Tr "repo.projects.close"}}</span> |  | ||||||
| 							</a> |  | ||||||
| 						{{end}} |  | ||||||
| 						<a class="item delete-button" href="#" data-url="{{$.Link}}/delete" data-id="{{.Project.ID}}"> |  | ||||||
| 							{{svg "octicon-trash"}} |  | ||||||
| 							<span class="gt-mx-3">{{$.locale.Tr "repo.issues.label_delete"}}</span> |  | ||||||
| 						</a> |  | ||||||
| 					</div> |  | ||||||
| 				</div> |  | ||||||
| 			{{end}} |  | ||||||
| 		</div> |  | ||||||
| 		<div class="divider"></div> |  | ||||||
|  |  | ||||||
| 	<div id="project-board"> |  | ||||||
|  |  | ||||||
| 		<div class="board {{if .CanWriteProjects}}sortable{{end}}"> |  | ||||||
| 			{{range $board := .Boards}} |  | ||||||
|  |  | ||||||
| 			<div class="ui segment board-column" style="background: {{.Color}} !important;" data-id="{{.ID}}" data-sorting="{{.Sorting}}" data-url="{{$.Link}}/{{.ID}}"> |  | ||||||
| 				<div class="board-column-header gt-df gt-ac gt-sb"> |  | ||||||
| 					<div class="ui large label board-label gt-py-2"> |  | ||||||
| 						<div class="ui small circular grey label board-card-cnt"> |  | ||||||
| 							{{.NumIssues}} |  | ||||||
| 						</div> | 						</div> | ||||||
| 						{{.Title}} |  | ||||||
| 					</div> | 					</div> | ||||||
| 					{{if and $.CanWriteProjects (ne .ID 0)}} |  | ||||||
| 						<div class="ui dropdown jump item"> | 					<div class="text right actions"> | ||||||
| 							<div class="not-mobile gt-px-3" tabindex="-1"> | 						<button class="ui cancel button">{{$.locale.Tr "settings.cancel"}}</button> | ||||||
| 								{{svg "octicon-kebab-horizontal"}} | 						<button data-url="{{$.Link}}" class="ui primary button" id="new_board_submit">{{$.locale.Tr "repo.projects.column.new_submit"}}</button> | ||||||
| 							</div> | 					</div> | ||||||
| 							<div class="menu user-menu" tabindex="-1"> | 				</form> | ||||||
| 								<a class="item show-modal button" data-modal="#edit-project-board-modal-{{.ID}}"> | 			</div> | ||||||
| 									{{svg "octicon-pencil"}} | 		</div> | ||||||
|  | 	</div> | ||||||
|  | </div> | ||||||
|  | <div class="divider"></div> | ||||||
|  | <div class="ui two column stackable grid"> | ||||||
|  | 	<div class="column"> | ||||||
|  | 		<h2 class="project-title">{{$.Project.Title}}</h2> | ||||||
|  | 		<div class="content project-description">{{$.Project.RenderedContent|Str2html}}</div> | ||||||
|  | 	</div> | ||||||
|  | 	{{if $.CanWriteProjects}} | ||||||
|  | 		<div class="column right aligned"> | ||||||
|  | 			<div class="ui compact right mini menu"> | ||||||
|  | 				<a class="item" href="{{$.Link}}/edit?redirect=project"> | ||||||
|  | 					{{svg "octicon-pencil"}} | ||||||
|  | 					<span class="gt-mx-3">{{$.locale.Tr "repo.issues.label_edit"}}</span> | ||||||
|  | 				</a> | ||||||
|  | 				{{if .Project.IsClosed}} | ||||||
|  | 					<a class="item link-action" href data-url="{{$.Link}}/open"> | ||||||
|  | 						{{svg "octicon-check"}} | ||||||
|  | 						<span class="gt-mx-3">{{$.locale.Tr "repo.projects.open"}}</span> | ||||||
|  | 					</a> | ||||||
|  | 				{{else}} | ||||||
|  | 					<a class="item link-action" href data-url="{{$.Link}}/close"> | ||||||
|  | 						{{svg "octicon-skip"}} | ||||||
|  | 						<span class="gt-mx-3">{{$.locale.Tr "repo.projects.close"}}</span> | ||||||
|  | 					</a> | ||||||
|  | 				{{end}} | ||||||
|  | 				<a class="item delete-button" href="#" data-url="{{$.Link}}/delete" data-id="{{.Project.ID}}"> | ||||||
|  | 					{{svg "octicon-trash"}} | ||||||
|  | 					<span class="gt-mx-3">{{$.locale.Tr "repo.issues.label_delete"}}</span> | ||||||
|  | 				</a> | ||||||
|  | 			</div> | ||||||
|  | 		</div> | ||||||
|  | 	{{end}} | ||||||
|  | </div> | ||||||
|  |  | ||||||
|  | <div class="divider"></div> | ||||||
|  |  | ||||||
|  | <div id="project-board"> | ||||||
|  | 	<div class="board {{if .CanWriteProjects}}sortable{{end}}"> | ||||||
|  | 		{{range $board := .Boards}} | ||||||
|  | 		<div class="ui segment board-column" style="background: {{.Color}} !important;" data-id="{{.ID}}" data-sorting="{{.Sorting}}" data-url="{{$.Link}}/{{.ID}}"> | ||||||
|  | 			<div class="board-column-header gt-df gt-ac gt-sb"> | ||||||
|  | 				<div class="ui large label board-label gt-py-2"> | ||||||
|  | 					<div class="ui small circular grey label board-card-cnt"> | ||||||
|  | 						{{.NumIssues}} | ||||||
|  | 					</div> | ||||||
|  | 					{{.Title}} | ||||||
|  | 				</div> | ||||||
|  | 				{{if and $.CanWriteProjects (ne .ID 0)}} | ||||||
|  | 					<div class="ui dropdown jump item"> | ||||||
|  | 						<div class="not-mobile gt-px-3" tabindex="-1"> | ||||||
|  | 							{{svg "octicon-kebab-horizontal"}} | ||||||
|  | 						</div> | ||||||
|  | 						<div class="menu user-menu" tabindex="-1"> | ||||||
|  | 							<a class="item show-modal button" data-modal="#edit-project-board-modal-{{.ID}}"> | ||||||
|  | 								{{svg "octicon-pencil"}} | ||||||
|  | 								{{$.locale.Tr "repo.projects.column.edit"}} | ||||||
|  | 							</a> | ||||||
|  | 							{{if not .Default}} | ||||||
|  | 								<a class="item show-modal button default-project-board-show" | ||||||
|  | 								data-modal="#default-project-board-modal-{{.ID}}" | ||||||
|  | 								data-modal-default-project-board-header="{{$.locale.Tr "repo.projects.column.set_default"}}" | ||||||
|  | 								data-modal-default-project-board-content="{{$.locale.Tr "repo.projects.column.set_default_desc"}}" | ||||||
|  | 								data-url="{{$.Link}}/{{.ID}}/default"> | ||||||
|  | 									{{svg "octicon-pin"}} | ||||||
|  | 									{{$.locale.Tr "repo.projects.column.set_default"}} | ||||||
|  | 								</a> | ||||||
|  | 							{{else}} | ||||||
|  | 								<a class="item show-modal button default-project-board-show" | ||||||
|  | 								data-modal="#default-project-board-modal-{{.ID}}" | ||||||
|  | 								data-modal-default-project-board-header="{{$.locale.Tr "repo.projects.column.unset_default"}}" | ||||||
|  | 								data-modal-default-project-board-content="{{$.locale.Tr "repo.projects.column.unset_default_desc"}}" | ||||||
|  | 								data-url="{{$.Link}}/{{.ID}}/unsetdefault"> | ||||||
|  | 									{{svg "octicon-pin-slash"}} | ||||||
|  | 									{{$.locale.Tr "repo.projects.column.unset_default"}} | ||||||
|  | 								</a> | ||||||
|  | 							{{end}} | ||||||
|  | 							<a class="item show-modal button show-delete-column-modal" | ||||||
|  | 								data-modal="#delete-board-modal-{{.ID}}" | ||||||
|  | 								data-url="{{$.Link}}/{{.ID}}" | ||||||
|  | 							> | ||||||
|  | 								{{svg "octicon-trash"}} | ||||||
|  | 								{{$.locale.Tr "repo.projects.column.delete"}} | ||||||
|  | 							</a> | ||||||
|  |  | ||||||
|  | 							<div class="ui small modal edit-project-board" id="edit-project-board-modal-{{.ID}}"> | ||||||
|  | 								<div class="header"> | ||||||
| 									{{$.locale.Tr "repo.projects.column.edit"}} | 									{{$.locale.Tr "repo.projects.column.edit"}} | ||||||
| 								</a> | 								</div> | ||||||
| 								{{if not .Default}} | 								<div class="content"> | ||||||
| 									<a class="item show-modal button default-project-board-show" | 									<form class="ui form"> | ||||||
| 									data-modal="#default-project-board-modal-{{.ID}}" | 										<div class="required field"> | ||||||
| 									data-modal-default-project-board-header="{{$.locale.Tr "repo.projects.column.set_default"}}" | 											<label for="new_board_title">{{$.locale.Tr "repo.projects.column.edit_title"}}</label> | ||||||
| 									data-modal-default-project-board-content="{{$.locale.Tr "repo.projects.column.set_default_desc"}}" | 											<input class="project-board-title" id="new_board_title" name="title" value="{{.Title}}" required> | ||||||
| 									data-url="{{$.Link}}/{{.ID}}/default"> | 										</div> | ||||||
| 										{{svg "octicon-pin"}} |  | ||||||
| 										{{$.locale.Tr "repo.projects.column.set_default"}} |  | ||||||
| 									</a> |  | ||||||
| 								{{else}} |  | ||||||
| 									<a class="item show-modal button default-project-board-show" |  | ||||||
| 									data-modal="#default-project-board-modal-{{.ID}}" |  | ||||||
| 									data-modal-default-project-board-header="{{$.locale.Tr "repo.projects.column.unset_default"}}" |  | ||||||
| 									data-modal-default-project-board-content="{{$.locale.Tr "repo.projects.column.unset_default_desc"}}" |  | ||||||
| 									data-url="{{$.Link}}/{{.ID}}/unsetdefault"> |  | ||||||
| 										{{svg "octicon-pin-slash"}} |  | ||||||
| 										{{$.locale.Tr "repo.projects.column.unset_default"}} |  | ||||||
| 									</a> |  | ||||||
| 								{{end}} |  | ||||||
| 								<a class="item show-modal button show-delete-column-modal" |  | ||||||
| 									data-modal="#delete-board-modal-{{.ID}}" |  | ||||||
| 									data-url="{{$.Link}}/{{.ID}}" |  | ||||||
| 								> |  | ||||||
| 									{{svg "octicon-trash"}} |  | ||||||
| 									{{$.locale.Tr "repo.projects.column.delete"}} |  | ||||||
| 								</a> |  | ||||||
|  |  | ||||||
| 								<div class="ui small modal edit-project-board" id="edit-project-board-modal-{{.ID}}"> | 										<div class="field color-field"> | ||||||
| 									<div class="header"> | 											<label for="new_board_color">{{$.locale.Tr "repo.projects.column.color"}}</label> | ||||||
| 										{{$.locale.Tr "repo.projects.column.edit"}} | 											<div class="color picker column"> | ||||||
| 									</div> | 												<input class="color-picker" maxlength="7" placeholder="#c320f6" id="new_board_color" name="color" value="{{.Color}}"> | ||||||
| 									<div class="content"> | 												<div class="column precolors"> | ||||||
| 										<form class="ui form"> | 													{{template "repo/issue/label_precolors"}} | ||||||
| 											<div class="required field"> |  | ||||||
| 												<label for="new_board_title">{{$.locale.Tr "repo.projects.column.edit_title"}}</label> |  | ||||||
| 												<input class="project-board-title" id="new_board_title" name="title" value="{{.Title}}" required> |  | ||||||
| 											</div> |  | ||||||
|  |  | ||||||
| 											<div class="field color-field"> |  | ||||||
| 												<label for="new_board_color">{{$.locale.Tr "repo.projects.column.color"}}</label> |  | ||||||
| 												<div class="color picker column"> |  | ||||||
| 													<input class="color-picker" maxlength="7" placeholder="#c320f6" id="new_board_color" name="color" value="{{.Color}}"> |  | ||||||
| 													<div class="column precolors"> |  | ||||||
| 														{{template "repo/issue/label_precolors"}} |  | ||||||
| 													</div> |  | ||||||
| 												</div> | 												</div> | ||||||
| 											</div> | 											</div> | ||||||
|  | 										</div> | ||||||
|  |  | ||||||
| 											<div class="text right actions"> | 										<div class="text right actions"> | ||||||
| 												<button class="ui cancel button">{{$.locale.Tr "settings.cancel"}}</button> | 											<button class="ui cancel button">{{$.locale.Tr "settings.cancel"}}</button> | ||||||
| 												<button data-url="{{$.Link}}/{{.ID}}" class="ui primary button edit-column-button">{{$.locale.Tr "repo.projects.column.edit"}}</button> | 											<button data-url="{{$.Link}}/{{.ID}}" class="ui primary button edit-column-button">{{$.locale.Tr "repo.projects.column.edit"}}</button> | ||||||
| 											</div> | 										</div> | ||||||
| 										</form> | 									</form> | ||||||
| 									</div> |  | ||||||
| 								</div> |  | ||||||
|  |  | ||||||
| 								<div class="ui g-modal-confirm modal default-project-board-modal" id="default-project-board-modal-{{.ID}}"> |  | ||||||
| 									<div class="header"> |  | ||||||
| 										<span id="default-project-board-header"></span> |  | ||||||
| 									</div> |  | ||||||
| 									<div class="content"> |  | ||||||
| 										<label id="default-project-board-content"></label> |  | ||||||
| 									</div> |  | ||||||
| 									{{template "base/modal_actions_confirm" (dict "locale" $.locale "ModalButtonTypes" "confirm")}} |  | ||||||
| 								</div> |  | ||||||
|  |  | ||||||
| 								<div class="ui g-modal-confirm modal" id="delete-board-modal-{{.ID}}"> |  | ||||||
| 									<div class="header"> |  | ||||||
| 										{{$.locale.Tr "repo.projects.column.delete"}} |  | ||||||
| 									</div> |  | ||||||
| 									<div class="content"> |  | ||||||
| 										<label> |  | ||||||
| 											{{$.locale.Tr "repo.projects.column.deletion_desc"}} |  | ||||||
| 										</label> |  | ||||||
| 									</div> |  | ||||||
| 									{{template "base/modal_actions_confirm" (dict "locale" $.locale "ModalButtonTypes" "confirm")}} |  | ||||||
| 								</div> | 								</div> | ||||||
| 							</div> | 							</div> | ||||||
| 						</div> |  | ||||||
| 					{{end}} |  | ||||||
| 				</div> |  | ||||||
| 				<div class="divider"></div> |  | ||||||
|  |  | ||||||
| 				<div class="ui cards board" data-url="{{$.Link}}/{{.ID}}" data-project="{{$.Project.ID}}" data-board="{{.ID}}" id="board_{{.ID}}"> | 							<div class="ui g-modal-confirm modal default-project-board-modal" id="default-project-board-modal-{{.ID}}"> | ||||||
|  | 								<div class="header"> | ||||||
|  | 									<span id="default-project-board-header"></span> | ||||||
|  | 								</div> | ||||||
|  | 								<div class="content"> | ||||||
|  | 									<label id="default-project-board-content"></label> | ||||||
|  | 								</div> | ||||||
|  | 								{{template "base/modal_actions_confirm" (dict "locale" $.locale "ModalButtonTypes" "confirm")}} | ||||||
|  | 							</div> | ||||||
|  |  | ||||||
| 					{{range (index $.IssuesMap .ID)}} | 							<div class="ui g-modal-confirm modal" id="delete-board-modal-{{.ID}}"> | ||||||
|  | 								<div class="header"> | ||||||
| 					<!-- start issue card --> | 									{{$.locale.Tr "repo.projects.column.delete"}} | ||||||
| 					<div class="card board-card" data-issue="{{.ID}}"> | 								</div> | ||||||
| 						{{if eq $.Project.CardType 1}}{{/* Images and Text*/}} | 								<div class="content"> | ||||||
| 							<div class="card-attachment-images"> | 									<label> | ||||||
| 								{{range (index $.issuesAttachmentMap .ID)}} | 										{{$.locale.Tr "repo.projects.column.deletion_desc"}} | ||||||
| 									<img src="{{.DownloadURL}}" alt="{{.Name}}" /> | 									</label> | ||||||
| 								{{end}} | 								</div> | ||||||
| 							</div> | 								{{template "base/modal_actions_confirm" (dict "locale" $.locale "ModalButtonTypes" "confirm")}} | ||||||
| 						{{end}} |  | ||||||
| 						<div class="content gt-p-0"> |  | ||||||
| 							<div class="header"> |  | ||||||
| 								<span class="gt-dif gt-ac gt-vm"> |  | ||||||
| 									{{template "shared/issueicon" .}} |  | ||||||
| 								</span> |  | ||||||
| 								<a class="project-board-title gt-vm" href="{{.Link}}"> |  | ||||||
| 									{{.Title}} |  | ||||||
| 								</a> |  | ||||||
| 							</div> |  | ||||||
| 							<div class="meta gt-my-2"> |  | ||||||
| 								<span class="text light grey"> |  | ||||||
| 									{{.Repo.FullName}}#{{.Index}} |  | ||||||
| 									{{$timeStr := TimeSinceUnix .GetLastEventTimestamp $.locale}} |  | ||||||
| 									{{if .OriginalAuthor}} |  | ||||||
| 										{{$.locale.Tr .GetLastEventLabelFake $timeStr (.OriginalAuthor|Escape) | Safe}} |  | ||||||
| 									{{else if gt .Poster.ID 0}} |  | ||||||
| 										{{$.locale.Tr .GetLastEventLabel $timeStr (.Poster.HomeLink|Escape) (.Poster.GetDisplayName | Escape) | Safe}} |  | ||||||
| 									{{else}} |  | ||||||
| 										{{$.locale.Tr .GetLastEventLabelFake $timeStr (.Poster.GetDisplayName | Escape) | Safe}} |  | ||||||
| 									{{end}} |  | ||||||
| 								</span> |  | ||||||
| 							</div> |  | ||||||
| 							{{- if .MilestoneID}} |  | ||||||
| 							<div class="meta gt-my-2"> |  | ||||||
| 								<a class="milestone" href="{{$.RepoLink}}/milestone/{{.MilestoneID}}"> |  | ||||||
| 									{{svg "octicon-milestone" 16 "gt-mr-2 gt-vm"}} |  | ||||||
| 									<span class="gt-vm">{{.Milestone.Name}}</span> |  | ||||||
| 								</a> |  | ||||||
| 							</div> |  | ||||||
| 							{{- end}} |  | ||||||
| 							{{- range index $.LinkedPRs .ID}} |  | ||||||
| 							<div class="meta gt-my-2"> |  | ||||||
| 								<a href="{{$.RepoLink}}/pulls/{{.Index}}"> |  | ||||||
| 									<span class="gt-m-0 text {{if .PullRequest.HasMerged}}purple{{else if .IsClosed}}red{{else}}green{{end}}">{{svg "octicon-git-merge" 16 "gt-mr-2 gt-vm"}}</span> |  | ||||||
| 									<span class="gt-vm">{{.Title}} <span class="text light grey">#{{.Index}}</span></span> |  | ||||||
| 								</a> |  | ||||||
| 							</div> |  | ||||||
| 							{{- end}} |  | ||||||
| 						</div> |  | ||||||
|  |  | ||||||
| 						{{if or .Labels .Assignees}} |  | ||||||
| 						<div class="extra content labels-list gt-p-0 gt-pt-2"> |  | ||||||
| 							{{range .Labels}} |  | ||||||
| 								<a target="_blank" href="{{$.RepoLink}}/issues?labels={{.ID}}">{{RenderLabel $.Context .}}</a> |  | ||||||
| 							{{end}} |  | ||||||
| 							<div class="right floated"> |  | ||||||
| 								{{range .Assignees}} |  | ||||||
| 									<a target="_blank" href="{{.HomeLink}}" data-tooltip-content="{{$.locale.Tr "repo.projects.column.assigned_to"}} {{.Name}}">{{avatar $.Context . 28 "mini gt-mr-3"}}</a> |  | ||||||
| 								{{end}} |  | ||||||
| 							</div> | 							</div> | ||||||
| 						</div> | 						</div> | ||||||
| 						{{end}} |  | ||||||
| 					</div> | 					</div> | ||||||
| 					<!-- stop issue card --> | 				{{end}} | ||||||
|  | 			</div> | ||||||
|  | 			<div class="divider"></div> | ||||||
|  |  | ||||||
|  | 			<div class="ui cards board" data-url="{{$.Link}}/{{.ID}}" data-project="{{$.Project.ID}}" data-board="{{.ID}}" id="board_{{.ID}}"> | ||||||
|  |  | ||||||
|  | 				{{range (index $.IssuesMap .ID)}} | ||||||
|  |  | ||||||
|  | 				<!-- start issue card --> | ||||||
|  | 				<div class="card board-card" data-issue="{{.ID}}"> | ||||||
|  | 					{{if eq $.Project.CardType 1}}{{/* Images and Text*/}} | ||||||
|  | 						<div class="card-attachment-images"> | ||||||
|  | 							{{range (index $.issuesAttachmentMap .ID)}} | ||||||
|  | 								<img src="{{.DownloadURL}}" alt="{{.Name}}" /> | ||||||
|  | 							{{end}} | ||||||
|  | 						</div> | ||||||
|  | 					{{end}} | ||||||
|  | 					<div class="content gt-p-0"> | ||||||
|  | 						<div class="header"> | ||||||
|  | 							<span class="gt-dif gt-ac gt-vm"> | ||||||
|  | 								{{template "shared/issueicon" .}} | ||||||
|  | 							</span> | ||||||
|  | 							<a class="project-board-title gt-vm" href="{{.Link}}"> | ||||||
|  | 								{{.Title}} | ||||||
|  | 							</a> | ||||||
|  | 						</div> | ||||||
|  | 						<div class="meta gt-my-2"> | ||||||
|  | 							<span class="text light grey"> | ||||||
|  | 								{{.Repo.FullName}}#{{.Index}} | ||||||
|  | 								{{$timeStr := TimeSinceUnix .GetLastEventTimestamp $.locale}} | ||||||
|  | 								{{if .OriginalAuthor}} | ||||||
|  | 									{{$.locale.Tr .GetLastEventLabelFake $timeStr (.OriginalAuthor|Escape) | Safe}} | ||||||
|  | 								{{else if gt .Poster.ID 0}} | ||||||
|  | 									{{$.locale.Tr .GetLastEventLabel $timeStr (.Poster.HomeLink|Escape) (.Poster.GetDisplayName | Escape) | Safe}} | ||||||
|  | 								{{else}} | ||||||
|  | 									{{$.locale.Tr .GetLastEventLabelFake $timeStr (.Poster.GetDisplayName | Escape) | Safe}} | ||||||
|  | 								{{end}} | ||||||
|  | 							</span> | ||||||
|  | 						</div> | ||||||
|  | 						{{- if .MilestoneID}} | ||||||
|  | 						<div class="meta gt-my-2"> | ||||||
|  | 							<a class="milestone" href="{{$.RepoLink}}/milestone/{{.MilestoneID}}"> | ||||||
|  | 								{{svg "octicon-milestone" 16 "gt-mr-2 gt-vm"}} | ||||||
|  | 								<span class="gt-vm">{{.Milestone.Name}}</span> | ||||||
|  | 							</a> | ||||||
|  | 						</div> | ||||||
|  | 						{{- end}} | ||||||
|  | 						{{- range index $.LinkedPRs .ID}} | ||||||
|  | 						<div class="meta gt-my-2"> | ||||||
|  | 							<a href="{{$.RepoLink}}/pulls/{{.Index}}"> | ||||||
|  | 								<span class="gt-m-0 text {{if .PullRequest.HasMerged}}purple{{else if .IsClosed}}red{{else}}green{{end}}">{{svg "octicon-git-merge" 16 "gt-mr-2 gt-vm"}}</span> | ||||||
|  | 								<span class="gt-vm">{{.Title}} <span class="text light grey">#{{.Index}}</span></span> | ||||||
|  | 							</a> | ||||||
|  | 						</div> | ||||||
|  | 						{{- end}} | ||||||
|  | 					</div> | ||||||
|  |  | ||||||
|  | 					{{if or .Labels .Assignees}} | ||||||
|  | 					<div class="extra content labels-list gt-p-0 gt-pt-2"> | ||||||
|  | 						{{range .Labels}} | ||||||
|  | 							<a target="_blank" href="{{$.RepoLink}}/issues?labels={{.ID}}">{{RenderLabel $.Context .}}</a> | ||||||
|  | 						{{end}} | ||||||
|  | 						<div class="right floated"> | ||||||
|  | 							{{range .Assignees}} | ||||||
|  | 								<a target="_blank" href="{{.HomeLink}}" data-tooltip-content="{{$.locale.Tr "repo.projects.column.assigned_to"}} {{.Name}}">{{avatar $.Context . 28 "mini gt-mr-3"}}</a> | ||||||
|  | 							{{end}} | ||||||
|  | 						</div> | ||||||
|  | 					</div> | ||||||
| 					{{end}} | 					{{end}} | ||||||
| 				</div> | 				</div> | ||||||
| 			</div> | 				<!-- stop issue card --> | ||||||
| 			{{end}} |  | ||||||
| 		</div> |  | ||||||
|  |  | ||||||
|  | 				{{end}} | ||||||
|  | 			</div> | ||||||
|  | 		</div> | ||||||
|  | 		{{end}} | ||||||
| 	</div> | 	</div> | ||||||
|  |  | ||||||
|  | </div> | ||||||
|  |  | ||||||
| {{if .CanWriteProjects}} | {{if .CanWriteProjects}} | ||||||
| 	<div class="ui g-modal-confirm delete modal"> | 	<div class="ui g-modal-confirm delete modal"> | ||||||
| 		<div class="header"> | 		<div class="header"> | ||||||
|   | |||||||
| @@ -8,20 +8,20 @@ | |||||||
| 		</div> | 		</div> | ||||||
| 	</div> | 	</div> | ||||||
| {{else}} | {{else}} | ||||||
| <div role="main" aria-label="{{.Title}}" class="page-content user profile packages"> | 	<div role="main" aria-label="{{.Title}}" class="page-content user profile packages"> | ||||||
| 	<div class="ui container"> | 		<div class="ui container"> | ||||||
| 		<div class="ui stackable grid"> | 			<div class="ui stackable grid"> | ||||||
| 			<div class="ui four wide column"> | 				<div class="ui four wide column"> | ||||||
| 				{{template "shared/user/profile_big_avatar" .}} | 					{{template "shared/user/profile_big_avatar" .}} | ||||||
| 			</div> | 				</div> | ||||||
| 			<div class="ui twelve wide column"> | 				<div class="ui twelve wide column"> | ||||||
| 				<div class="gt-mb-4"> | 					<div class="gt-mb-4"> | ||||||
| 					{{template "user/overview/header" .}} | 						{{template "user/overview/header" .}} | ||||||
|  | 					</div> | ||||||
|  | 					{{template "package/shared/versionlist" .}} | ||||||
| 				</div> | 				</div> | ||||||
| 				{{template "package/shared/versionlist" .}} |  | ||||||
| 			</div> | 			</div> | ||||||
| 		</div> | 		</div> | ||||||
| 	</div> | 	</div> | ||||||
| </div> |  | ||||||
| {{end}} | {{end}} | ||||||
| {{template "base/footer" .}} | {{template "base/footer" .}} | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user