76 lines
No EOL
2.4 KiB
HTML
76 lines
No EOL
2.4 KiB
HTML
<div class="resource-view repository-view" resource="repositoryResource" error-message="'Repository not found'">
|
|
<div class="page-content">
|
|
<div class="cor-title">
|
|
<span class="cor-title-link"></span>
|
|
<span class="cor-title-content">
|
|
<span class="repo-circle no-background" repo="repository"></span>
|
|
{{ namespace }} / {{ name }}
|
|
<span class="repo-star" repository="repository" ng-if="!user.anonymous"></span>
|
|
</span>
|
|
</div>
|
|
|
|
<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>
|
|
|
|
<span class="cor-tab" tab-title="Tags" tab-target="#tags">
|
|
<i class="fa fa-tags"></i>
|
|
</span>
|
|
|
|
<span class="cor-tab" tab-title="Builds" tab-target="#builds">
|
|
<i class="fa fa-tasks"></i>
|
|
</span>
|
|
|
|
<span class="cor-tab" tab-title="Changes" tab-target="#changes">
|
|
<i class="fa fa-code-fork"></i>
|
|
</span>
|
|
|
|
<!-- Admin Only Tabs -->
|
|
<span class="cor-tab" tab-title="Usage Logs" tab-target="#logs" tab-init="showLogs()"
|
|
ng-if="repository.can_admin">
|
|
<i class="fa fa-bar-chart"></i>
|
|
</span>
|
|
|
|
<span class="cor-tab" tab-title="Settings" tab-target="#settings"
|
|
ng-if="repository.can_admin">
|
|
<i class="fa fa-gear"></i>
|
|
</span>
|
|
</div> <!-- /cor-tabs -->
|
|
|
|
<div class="cor-tab-content">
|
|
<!-- Information -->
|
|
<div id="info" class="tab-pane active">
|
|
<div class="repo-panel-info" repository="repository"></div>
|
|
</div>
|
|
|
|
<!-- Tags -->
|
|
<div id="tags" class="tab-pane">
|
|
<div class="repo-panel-tags" repository="repository"></div>
|
|
</div>
|
|
|
|
<!-- Builds -->
|
|
<div id="builds" class="tab-pane">
|
|
builds
|
|
</div>
|
|
|
|
<!-- Changes -->
|
|
<div id="changes" class="tab-pane">
|
|
changes
|
|
</div>
|
|
|
|
<!-- Usage Logs -->
|
|
<div id="logs" class="tab-pane" ng-if="repository.can_admin">
|
|
<div class="logs-view" repository="repository" makevisible="logsShown"></div>
|
|
</div>
|
|
|
|
<!-- Settings -->
|
|
<div id="settings" class="tab-pane" ng-if="repository.can_admin">
|
|
settings
|
|
</div>
|
|
|
|
</div> <!-- /cor-tab-content -->
|
|
</div>
|
|
</div>
|
|
</div> |