71 lines
2.6 KiB
HTML
71 lines
2.6 KiB
HTML
<div class="container org-list">
|
|
<div class="loading" ng-show="loading">
|
|
<i class="fa fa-spinner fa-spin fa-3x"></i>
|
|
</div>
|
|
|
|
<div class="button-bar-right">
|
|
<a href="/organizations/new/" title="Starts the process to create a new organization" bs-tooltip="tooltip.title">
|
|
<button class="btn btn-success">
|
|
<i class="fa fa-plus"></i>
|
|
Create New Organization
|
|
</button>
|
|
</a>
|
|
<a href="/user/?migrate" ng-show="!user.anonymous" title="Starts the process to convert this account into an organization" bs-tooltip="tooltip.title">
|
|
<button class="btn btn-primary">
|
|
<i class="fa fa-caret-square-o-right"></i>
|
|
Convert account
|
|
</button>
|
|
</a>
|
|
</div>
|
|
|
|
<!-- Organizations -->
|
|
<div ng-show="user.organizations.length > 0">
|
|
<h2>Organizations</h2>
|
|
|
|
<div class="organization-listing" ng-repeat="organization in user.organizations">
|
|
<img class="gravatar" src="//www.gravatar.com/avatar/{{ organization.gravatar }}?s=32&d=identicon">
|
|
<a class="org-title" href="/organization/{{ organization.name }}">{{ organization.name }}</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Organization Help/Tour -->
|
|
<div class="product-tour" ng-show="!user.organizations || user.organizations.length == 0">
|
|
|
|
<div class="tour-section row">
|
|
<div class="col-md-12">
|
|
<div class="tour-section-title">Organizations</div>
|
|
<div class="tour-section-description">
|
|
Organizations in Quay provide unique features for businesses and other groups, such as team-based sharing and fine-grain permission controls.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="tour-section row">
|
|
<div class="col-md-7">
|
|
<img src="/static/img/user-home.png" title="Organization Overview"
|
|
data-screenshot-url="https://quay.io/organization/myorg/" class="img-responsive">
|
|
</div>
|
|
<div class="col-md-5">
|
|
<div class="tour-section-title">Working in teams</div>
|
|
<div class="tour-section-description">
|
|
Organizations are designed for business blah blah blah
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="tour-section row">
|
|
<div class="col-md-7">
|
|
<img src="/static/img/user-home.png" title=""
|
|
data-screenshot-url="https://quay.io/organization/myorg/" class="img-responsive">
|
|
</div>
|
|
<div class="col-md-5">
|
|
<div class="tour-section-title">Global and Local Permissions</div>
|
|
<div class="tour-section-description">
|
|
Organizations are designed for business blah blah blah
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|