open-nomad/ui/app/templates/servers/server/monitor.hbs

13 lines
359 B
Handlebars
Raw Normal View History

{{page-title "Server " this.model.name}}
<ServerSubnav @server={{this.model}} />
2020-06-25 03:37:12 +00:00
<section class="section is-full-width">
2020-06-16 05:47:05 +00:00
{{#if (can "read agent")}}
<AgentMonitor
@level={{this.level}}
@server={{this.model}}
@onLevelChange={{action (mut this.level)}} />
2020-06-16 05:47:05 +00:00
{{else}}
<ForbiddenMessage @permission="agent:read" />
{{/if}}
</section>