mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-03 09:09:47 +01:00
33 lines
2.4 KiB
HTML
33 lines
2.4 KiB
HTML
<div class="container-fluid container-fluid-custom" element-height ng-controller="DetailsController as vm">
|
|
<modal-dialog action="vm.action()" content-type="//vm.contentType//" modal-title="//vm.modalTitle//" modal-message="//vm.modalMessage//" confirm-only="vm.confirmOnly"></modal-dialog>
|
|
<div class="container container-custom">
|
|
<div class="row extend-height">
|
|
<div class="col-xs-12 col-md-12 extend-height">
|
|
<div class="section" ng-style="vm.sectionHeight">
|
|
<h4 class="page-header">
|
|
<span ng-show="!vm.publicity">// 'my_projects' | tr //</span>
|
|
<a ng-show="vm.publicity" href="#/repositories?project_id=//vm.selectedProject.project_id//" class="title-color" ng-click="vm.togglePublicity({publicity: false})">// 'my_projects' | tr //</a>
|
|
<span class="gutter">|</span>
|
|
<span ng-show="vm.publicity">// 'public_projects' | tr //</span>
|
|
<a ng-show="!vm.publicity" href="#/repositories?project_id=//vm.selectedProject.project_id//" class="title-color" ng-click="vm.togglePublicity({publicity: true})">// 'public_projects' | tr //</a></h4>
|
|
<div class="switch-pane">
|
|
<switch-pane-projects is-open="vm.isOpen" selected-project="vm.selectedProject"></switch-pane-projects>
|
|
<span>
|
|
<navigation-details target="vm.target" ng-show="vm.isProjectMember"></navigation-details>
|
|
</span>
|
|
</div>
|
|
<retrieve-projects is-open="vm.isOpen" selected-project="vm.selectedProject" is-project-member="vm.isProjectMember" publicity="vm.publicity"></retrieve-projects>
|
|
<!-- Tab panes -->
|
|
<div class="tab-content" ng-click="vm.closeRetrievePane()">
|
|
<input type="hidden" id="HarborRegUrl" value="{{.HarborRegUrl}}">
|
|
<list-repository ng-if="vm.target === 'repositories'" section-height="vm.sectionHeight"></list-repository>
|
|
<list-replication ng-if="vm.target === 'replication'" section-height="vm.sectionHeight"></list-replication>
|
|
<list-project-member ng-if="vm.target === 'users'" section-height="vm.sectionHeight" target="vm.target"></list-project-member>
|
|
<list-log ng-if="vm.target === 'logs'" section-height="vm.sectionHeight" target="vm.target" publicity="vm.publicity"></list-log>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |