travis-web/assets/scripts/app/templates/profile/show.hbs

26 lines
550 B
Handlebars

<h3>{{view.name}}</h3>
{{#if config.billing_endpoint}}
{{#if view.subscribed}}
<a class="button activated" {{bind-attr href="billingUrl"}}>
Subscription active!
</a>
{{else}}
{{#if view.education}}
<a class="button activated" {{bind-attr href="billingUrl"}}>
Educational account!
</a>
{{else}}
<a class="button activate" {{bind-attr href="billingUrl"}}>
Sign up this account!
</a>
{{/if}}
{{/if}}
{{/if}}
{{view Travis.ProfileTabsView}}
<div class="tab">
{{outlet}}
</div>