initial import for Open Source 🎉
This commit is contained in:
parent
1898c361f3
commit
9c0dd3b722
2048 changed files with 218743 additions and 0 deletions
37
static/partials/billing.html
Normal file
37
static/partials/billing.html
Normal file
|
@ -0,0 +1,37 @@
|
|||
<div class="billing-page page-content">
|
||||
<div class="resource-view" resource="entityResource" error-message="'Could not load entity'">
|
||||
<div class="cor-title" ng-if="organization">
|
||||
<span class="cor-title-link">
|
||||
<a class="back-link" href="/organization/{{ organization.name }}?tab=settings">
|
||||
<span class="avatar" size="24" data="organization.avatar"></span>
|
||||
{{ organization.name }}
|
||||
</a>
|
||||
</span>
|
||||
<span class="cor-title-content">
|
||||
Account Plan
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div class="cor-title" ng-if="viewuser">
|
||||
<span class="cor-title-link">
|
||||
<a class="back-link" href="/user/{{ viewuser.username }}?tab=settings">
|
||||
<span class="avatar" size="24" data="viewuser.avatar"></span>
|
||||
{{ viewuser.username }}
|
||||
</a>
|
||||
</span>
|
||||
<span class="cor-title-content">
|
||||
Account Plan
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div class="co-main-content-panel" style="min-height: 500px;">
|
||||
<div ng-if="!invaliduser">
|
||||
<div class="plan-manager" organization="organization.name" has-subscription="hasSubscription" ng-if="organization"></div>
|
||||
<div class="plan-manager" user="viewuser" has-subscription="hasSubscription" ng-if="!organization"></div>
|
||||
</div>
|
||||
<div class="co-alert co-alert-danger" ng-if="invaliduser">
|
||||
You do not have access to this resource
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Reference in a new issue