mirror of https://github.com/rancher/ui.git
23 lines
954 B
Handlebars
23 lines
954 B
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" href="{{href-to newRoute scope.current.id}}">
|
|
<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" href="{{href-to newRoute scope.currentCluster.id}}">
|
|
<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" href="{{href-to newRoute}}">
|
|
<span class="darken"><i class="icon icon-plus text-small"></i></span>
|
|
<span>{{t newTranslationKey}}</span>
|
|
</a>
|
|
{{/if}}
|
|
{{/if}}
|
|
</div>
|