mirror of https://github.com/rancher/ui.git
23 lines
1.0 KiB
Handlebars
23 lines
1.0 KiB
Handlebars
<div class="col span-6 offset-3 text-center pt-40 pb-40">
|
|
<img style="width: 75%;" src="{{app.baseAssets}}assets/images/resources/{{resource}}.svg"/>
|
|
{{#if showNew}}
|
|
<br/>
|
|
{{#if (eq ctx 'projectId')}}
|
|
<a class="btn bg-link icon-btn mt-50 link" href="{{href-to newRoute scope.currentProject.id}}" disabled={{disabled}}>
|
|
<span class="darken"><i class="icon icon-plus text-small"></i></span>
|
|
<span>{{t newTranslationKey}}</span>
|
|
</a>
|
|
{{else if (eq ctx 'clusterId')}}
|
|
<a class="btn bg-link icon-btn mt-50 link" href="{{href-to newRoute scope.currentCluster.id}}" disabled={{disabled}}>
|
|
<span class="darken"><i class="icon icon-plus text-small"></i></span>
|
|
<span>{{t newTranslationKey}}</span>
|
|
</a>
|
|
{{else}}
|
|
<a class="btn bg-link icon-btn mt-50 link" href="{{href-to newRoute}}" disabled={{disabled}}>
|
|
<span class="darken"><i class="icon icon-plus text-small"></i></span>
|
|
<span>{{t newTranslationKey}}</span>
|
|
</a>
|
|
{{/if}}
|
|
{{/if}}
|
|
</div>
|