2015-11-13 18:05:48 +01:00
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="dashboard feeds">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "user/dashboard/navbar" .}}
|
|
|
|
<div class="ui container">
|
2017-02-08 02:37:23 +01:00
|
|
|
{{template "base/alert" .}}
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="ui grid">
|
|
|
|
<div class="ten wide column">
|
|
|
|
{{template "user/dashboard/feeds" .}}
|
|
|
|
</div>
|
2017-05-09 02:31:30 +02:00
|
|
|
<div id="dashboard-repo-search" class="six wide column">
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="ui {{if not .ContextUser.IsOrganization}}three{{else}}two{{end}} item tabable menu">
|
2017-05-09 02:31:30 +02:00
|
|
|
<a :class="{item: true, active: tab === 'repos'}" @click="changeTab('repos')">{{.i18n.Tr "repository"}}</a>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{if not .ContextUser.IsOrganization}}
|
2017-05-09 02:31:30 +02:00
|
|
|
<a :class="{item: true, active: tab === 'orgs'}" @click="changeTab('orgs')">{{.i18n.Tr "organization"}}</a>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{end}}
|
2017-05-09 02:31:30 +02:00
|
|
|
<a :class="{item: true, active: tab === 'mirrors'}" @click="changeTab('mirrors')">{{.i18n.Tr "mirror"}}</a>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2017-05-09 02:31:30 +02:00
|
|
|
<div v-if="tab === 'repos'" class="ui tab active list">
|
2017-01-30 06:57:47 +01:00
|
|
|
<div class="ui fluid input">
|
2017-05-09 02:31:30 +02:00
|
|
|
<input @keyUp="searchKeyUp" v-model="searchQuery" id="search_repo" placeholder="{{.i18n.Tr "home.search_repos"}}">
|
2017-01-30 06:57:47 +01:00
|
|
|
</div>
|
2015-12-07 23:30:52 +01:00
|
|
|
<h4 class="ui top attached header">
|
|
|
|
{{.i18n.Tr "home.my_repos"}} <span class="ui grey label">{{.ContextUser.NumRepos}}</span>
|
|
|
|
<div class="ui right">
|
2016-01-29 21:28:24 +01:00
|
|
|
<a class="poping up" href="{{AppSubUrl}}/repo/create" data-content="{{.i18n.Tr "new_repo"}}" data-variation="tiny inverted" data-position="left center">
|
|
|
|
<i class="plus icon"></i>
|
|
|
|
<span class="sr-only">{{.i18n.Tr "new_repo"}}</span>
|
|
|
|
</a>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached table segment">
|
2017-05-09 02:31:30 +02:00
|
|
|
<ul class="repo-owner-name-list">
|
|
|
|
<li v-for="repo in repos" :class="{'private': repo.private}">
|
|
|
|
<a :href="'{{AppSubUrl}}/' + repo.full_name">
|
|
|
|
<i :class="repoClass(repo)"></i>
|
|
|
|
<strong class="text truncate item-name"><% repo.full_name %></strong>
|
|
|
|
<span class="ui right text light grey">
|
|
|
|
<% repo.stars_count %> <i class="octicon octicon-star rear"></i>
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
2016-07-24 08:32:46 +02:00
|
|
|
{{if gt .ContextUser.NumRepos .MaxShowRepoNum}}
|
|
|
|
<li>
|
|
|
|
<a href="{{.ContextUser.HomeLink}}">{{.i18n.Tr "home.show_more_repos"}}</a>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</ul>
|
|
|
|
</div>
|
2015-11-13 18:05:48 +01:00
|
|
|
|
2015-12-07 23:30:52 +01:00
|
|
|
{{if not .ContextUser.IsOrganization}}
|
|
|
|
<h4 class="ui top attached header">
|
2016-07-24 08:32:46 +02:00
|
|
|
{{.i18n.Tr "home.collaborative_repos"}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached table segment">
|
2017-05-09 02:31:30 +02:00
|
|
|
<ul id="collaborative-repo-list">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{range .CollaborativeRepos}}
|
2017-05-09 02:31:30 +02:00
|
|
|
<li {{if .IsPrivate}}class="private"{{end}}>
|
2015-12-07 23:30:52 +01:00
|
|
|
<a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Name}}">
|
2016-07-16 06:45:13 +02:00
|
|
|
<i class="octicon octicon-{{if .IsPrivate}}lock{{else if .IsFork}}repo-forked{{else if .IsMirror}}repo-clone{{else}}repo{{end}}"></i>
|
2016-01-11 13:41:43 +01:00
|
|
|
<span class="text truncate owner-and-repo">
|
|
|
|
<span class="text truncate owner-name">{{.Owner.Name}}</span> / <strong>{{.Name}}</strong>
|
|
|
|
</span>
|
2015-12-07 23:30:52 +01:00
|
|
|
<span class="ui right text light grey">
|
2016-07-16 06:45:13 +02:00
|
|
|
{{.NumStars}} <i class="octicon octicon-star rear"></i>
|
2015-12-07 23:30:52 +01:00
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2015-11-13 18:05:48 +01:00
|
|
|
|
2015-12-07 23:30:52 +01:00
|
|
|
{{if not .ContextUser.IsOrganization}}
|
2017-05-09 02:31:30 +02:00
|
|
|
<div v-if="tab === 'orgs'" class="ui tab active list">
|
2015-12-07 23:30:52 +01:00
|
|
|
<h4 class="ui top attached header">
|
|
|
|
{{.i18n.Tr "home.my_orgs"}} <span class="ui grey label">{{.ContextUser.GetOrganizationCount}}</span>
|
|
|
|
<div class="ui right">
|
2016-01-29 21:28:24 +01:00
|
|
|
<a class="poping up" href="{{AppSubUrl}}/org/create" data-content="{{.i18n.Tr "new_org"}}" data-variation="tiny inverted" data-position="left center">
|
|
|
|
<i class="plus icon"></i>
|
|
|
|
<span class="sr-only">{{.i18n.Tr "new_org"}}</span>
|
|
|
|
</a>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached table segment">
|
2016-01-11 13:41:43 +01:00
|
|
|
<ul class="repo-owner-name-list">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{range .ContextUser.Orgs}}
|
|
|
|
<li>
|
|
|
|
<a href="{{AppSubUrl}}/{{.Name}}">
|
2016-07-16 06:45:13 +02:00
|
|
|
<i class="octicon octicon-organization"></i>
|
2016-01-11 13:41:43 +01:00
|
|
|
<strong class="text truncate item-name">{{.Name}}</strong>
|
2015-12-07 23:30:52 +01:00
|
|
|
<span class="ui right text light grey">
|
2016-07-16 06:45:13 +02:00
|
|
|
{{.NumRepos}} <i class="octicon octicon-repo rear"></i>
|
2015-12-07 23:30:52 +01:00
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2015-11-13 18:05:48 +01:00
|
|
|
|
2017-05-09 02:31:30 +02:00
|
|
|
<div v-if="tab === 'mirrors'" class="ui tab active list">
|
2015-12-07 23:30:52 +01:00
|
|
|
<h4 class="ui top attached header">
|
|
|
|
{{.i18n.Tr "home.my_mirrors"}} <span class="ui grey label">{{.MirrorCount}}</span>
|
|
|
|
<div class="ui right">
|
2016-01-29 21:28:24 +01:00
|
|
|
<a class="poping up" href="{{AppSubUrl}}/repo/migrate?mirror=1" data-content="{{.i18n.Tr "new_mirror"}}" data-variation="tiny inverted" data-position="left center">
|
|
|
|
<i class="plus icon"></i>
|
|
|
|
<span class="sr-only">{{.i18n.Tr "new_mirror"}}</span>
|
|
|
|
</a>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached table segment">
|
2016-01-11 13:41:43 +01:00
|
|
|
<ul class="repo-owner-name-list">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{range .Mirrors}}
|
|
|
|
<li {{if .IsPrivate}}class="private"{{end}}>
|
|
|
|
<a href="{{AppSubUrl}}/{{$.ContextUser.Name}}/{{.Name}}">
|
2016-07-16 06:45:13 +02:00
|
|
|
<i class="octicon octicon-repo-clone"></i>
|
2016-01-11 13:41:43 +01:00
|
|
|
<strong class="text truncate item-name">{{.Name}}</strong>
|
2015-12-07 23:30:52 +01:00
|
|
|
<span class="ui right text light grey">
|
2016-07-16 06:45:13 +02:00
|
|
|
{{.Interval}}H <i class="octicon octicon-sync rear"></i>
|
2015-12-07 23:30:52 +01:00
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-07-26 06:24:27 +02:00
|
|
|
</div>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "base/footer" .}}
|