2015-03-11 00:22:46 +00:00
|
|
|
<div class="resource-view repository-view"
|
|
|
|
resource="repositoryResource"
|
|
|
|
error-message="'Repository not found'">
|
2015-03-10 05:03:39 +00:00
|
|
|
<div class="page-content">
|
|
|
|
<div class="cor-title">
|
2015-03-18 17:40:07 +00:00
|
|
|
<span class="cor-title-link">
|
|
|
|
<a class="back-link" href="/repository">
|
|
|
|
Repositories
|
|
|
|
</a>
|
|
|
|
</span>
|
2015-03-10 05:03:39 +00:00
|
|
|
<span class="cor-title-content">
|
2015-03-12 19:22:47 +00:00
|
|
|
<span class="repo-circle no-background" repo="viewScope.repository"></span>
|
2015-03-10 05:03:39 +00:00
|
|
|
{{ namespace }} / {{ name }}
|
2015-03-12 19:22:47 +00:00
|
|
|
<span class="repo-star" repository="viewScope.repository" ng-if="!user.anonymous"></span>
|
2015-03-10 05:03:39 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
2014-02-15 03:59:44 +00:00
|
|
|
|
2015-03-10 05:03:39 +00:00
|
|
|
<div class="cor-tab-panel">
|
|
|
|
<div class="cor-tabs">
|
|
|
|
<span class="cor-tab" tab-active="true" tab-title="Information" tab-target="#info">
|
|
|
|
<i class="fa fa-info-circle"></i>
|
|
|
|
</span>
|
2014-11-24 21:07:38 +00:00
|
|
|
|
2015-03-10 05:03:39 +00:00
|
|
|
<span class="cor-tab" tab-title="Tags" tab-target="#tags">
|
|
|
|
<i class="fa fa-tags"></i>
|
2014-02-15 03:59:44 +00:00
|
|
|
</span>
|
2013-09-26 21:59:20 +00:00
|
|
|
|
2015-03-13 22:34:28 +00:00
|
|
|
<span class="cor-tab" tab-title="Builds" tab-target="#builds"
|
|
|
|
quay-show="viewScope.repository.can_write && Features.BUILD_SUPPORT">
|
2015-03-10 05:03:39 +00:00
|
|
|
<i class="fa fa-tasks"></i>
|
|
|
|
</span>
|
2013-09-27 20:12:51 +00:00
|
|
|
|
2015-03-12 19:22:47 +00:00
|
|
|
<span class="cor-tab" tab-title="Visualize" tab-target="#changes"
|
|
|
|
tab-shown="handleChangesState(true)" tab-hidden="handleChangesState(false)">
|
2015-03-10 05:03:39 +00:00
|
|
|
<i class="fa fa-code-fork"></i>
|
|
|
|
</span>
|
2013-09-26 22:21:29 +00:00
|
|
|
|
2015-03-10 05:03:39 +00:00
|
|
|
<!-- Admin Only Tabs -->
|
|
|
|
<span class="cor-tab" tab-title="Usage Logs" tab-target="#logs" tab-init="showLogs()"
|
2015-03-12 19:22:47 +00:00
|
|
|
ng-if="viewScope.repository.can_admin">
|
2015-03-10 05:03:39 +00:00
|
|
|
<i class="fa fa-bar-chart"></i>
|
|
|
|
</span>
|
2014-03-08 02:06:31 +00:00
|
|
|
|
2015-03-10 05:03:39 +00:00
|
|
|
<span class="cor-tab" tab-title="Settings" tab-target="#settings"
|
2015-03-12 19:22:47 +00:00
|
|
|
ng-if="viewScope.repository.can_admin">
|
2015-03-10 05:03:39 +00:00
|
|
|
<i class="fa fa-gear"></i>
|
|
|
|
</span>
|
|
|
|
</div> <!-- /cor-tabs -->
|
2014-03-08 02:06:31 +00:00
|
|
|
|
2015-03-10 05:03:39 +00:00
|
|
|
<div class="cor-tab-content">
|
|
|
|
<!-- Information -->
|
|
|
|
<div id="info" class="tab-pane active">
|
2015-03-12 19:22:47 +00:00
|
|
|
<div class="repo-panel-info"
|
|
|
|
repository="viewScope.repository"
|
|
|
|
builds="viewScope.builds"></div>
|
2014-03-08 02:06:31 +00:00
|
|
|
</div>
|
|
|
|
|
2015-03-10 05:03:39 +00:00
|
|
|
<!-- Tags -->
|
|
|
|
<div id="tags" class="tab-pane">
|
2015-03-12 19:22:47 +00:00
|
|
|
<div class="repo-panel-tags"
|
|
|
|
repository="viewScope.repository"
|
2015-03-18 18:47:53 +00:00
|
|
|
images="viewScope.images"
|
|
|
|
images-resource="viewScope.imagesResource"
|
2015-03-12 19:22:47 +00:00
|
|
|
selected-tags="viewScope.selectedTags"></div>
|
2014-08-13 21:54:15 +00:00
|
|
|
</div>
|
2013-11-21 21:03:11 +00:00
|
|
|
|
2015-03-10 05:03:39 +00:00
|
|
|
<!-- Builds -->
|
|
|
|
<div id="builds" class="tab-pane">
|
2015-03-13 22:34:28 +00:00
|
|
|
<div class="repo-panel-builds"
|
|
|
|
repository="viewScope.repository"
|
|
|
|
builds="viewScope.builds"></div>
|
2014-08-13 21:54:15 +00:00
|
|
|
</div>
|
2014-11-24 21:07:38 +00:00
|
|
|
|
2015-03-10 05:03:39 +00:00
|
|
|
<!-- Changes -->
|
|
|
|
<div id="changes" class="tab-pane">
|
2015-03-12 19:22:47 +00:00
|
|
|
<div class="repo-panel-changes"
|
|
|
|
repository="viewScope.repository"
|
2015-03-18 18:47:53 +00:00
|
|
|
images="viewScope.images"
|
|
|
|
images-resource="viewScope.imagesResource"
|
2015-03-12 19:22:47 +00:00
|
|
|
selected-tags="viewScope.selectedTags"
|
|
|
|
is-enabled="viewScope.changesVisible"></div>
|
2013-10-12 01:28:02 +00:00
|
|
|
</div>
|
2014-02-15 03:59:44 +00:00
|
|
|
|
2015-03-10 05:03:39 +00:00
|
|
|
<!-- Usage Logs -->
|
2015-03-12 19:22:47 +00:00
|
|
|
<div id="logs" class="tab-pane" ng-if="viewScope.repository.can_admin">
|
|
|
|
<div class="logs-view" repository="viewScope.repository" makevisible="logsShown"></div>
|
2014-02-28 05:12:09 +00:00
|
|
|
</div>
|
2014-01-09 18:25:58 +00:00
|
|
|
|
2015-03-10 05:03:39 +00:00
|
|
|
<!-- Settings -->
|
2015-03-12 19:22:47 +00:00
|
|
|
<div id="settings" class="tab-pane" ng-if="viewScope.repository.can_admin">
|
2015-03-16 18:17:27 +00:00
|
|
|
<div class="repo-panel-settings" repository="viewScope.repository"></div>
|
2014-01-09 20:15:06 +00:00
|
|
|
</div>
|
2015-03-10 05:03:39 +00:00
|
|
|
</div> <!-- /cor-tab-content -->
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|