Template Lint

This commit is contained in:
n313893254 2019-08-05 15:59:53 +08:00
parent c832f12676
commit a047d2db9b
1 changed files with 76 additions and 44 deletions

View File

@ -16,7 +16,8 @@
<div class="col span-12"> <div class="col span-12">
<div class="row"> <div class="row">
<div class="col span-12"> <div class="col span-12">
<label class="acc-label" for="">{{t "loggingPage.fluentd.endpoint.label"}} <label class="acc-label" for="">
{{t "loggingPage.fluentd.endpoint.label"}}
{{#if (eq idx 0)}} {{#if (eq idx 0)}}
{{field-required}} {{field-required}}
{{/if}} {{/if}}
@ -29,13 +30,16 @@
focus-out=(action "alertMessage" idx) focus-out=(action "alertMessage" idx)
}} }}
{{#if (and endpointError (eq idx index))}} {{#if (and endpointError (eq idx index))}}
<span class="text-error text-small">{{t endpointErrorText}}</span> <span class="text-error text-small">
{{t endpointErrorText}}
</span>
{{/if}} {{/if}}
</div> </div>
</div> </div>
<div class="row"> <div class="row">
<div class="col span-12"> <div class="col span-12">
<label class="acc-label" for="">{{t "loggingPage.fluentd.sharedKey.label"}} <label class="acc-label" for="">
{{t "loggingPage.fluentd.sharedKey.label"}}
</label> </label>
{{input {{input
type="password" type="password"
@ -47,7 +51,8 @@
</div> </div>
<div class="row"> <div class="row">
<div class="col span-6"> <div class="col span-6">
<label class="acc-label" for="">{{t "loggingPage.fluentd.username.label"}} <label class="acc-label" for="">
{{t "loggingPage.fluentd.username.label"}}
</label> </label>
{{input {{input
type="text" type="text"
@ -57,7 +62,8 @@
}} }}
</div> </div>
<div class="col span-6"> <div class="col span-6">
<label class="acc-label" for="">{{t "loggingPage.fluentd.password.label"}} <label class="acc-label" for="">
{{t "loggingPage.fluentd.password.label"}}
</label> </label>
{{input {{input
type="password" type="password"
@ -69,7 +75,9 @@
</div> </div>
<div class="row"> <div class="row">
<div class="col span-12 pt-0"> <div class="col span-12 pt-0">
<label class="acc-label" for="">{{t "loggingPage.fluentd.hostname.label"}}</label> <label class="acc-label" for="">
{{t "loggingPage.fluentd.hostname.label"}}
</label>
{{input {{input
type="text" type="text"
value=item.hostname value=item.hostname
@ -80,7 +88,8 @@
</div> </div>
<div class="row"> <div class="row">
<div class="col span-12"> <div class="col span-12">
<label class="acc-label" for="">{{t "loggingPage.fluentd.weight.label"}} <label class="acc-label" for="">
{{t "loggingPage.fluentd.weight.label"}}
</label> </label>
{{input-int {{input-int
class="form-control input-sm public" class="form-control input-sm public"
@ -92,7 +101,11 @@
</div> </div>
<div class="row"> <div class="row">
<div class="col span-12 pt-0" style="margin-top: 43px;"> <div class="col span-12 pt-0" style="margin-top: 43px;">
{{input type="checkbox" classNames="form-control" checked=item.standby}} {{input
type="checkbox"
classNames="form-control"
checked=item.standby
}}
{{t "loggingPage.fluentd.standby.label"}} {{t "loggingPage.fluentd.standby.label"}}
</div> </div>
</div> </div>
@ -101,24 +114,40 @@
{{/each}} {{/each}}
<div> <div>
<button class="btn bg-link icon-btn p-0" {{action "add"}}> <button class="btn bg-link icon-btn p-0" {{action "add"}}>
<span class="darken"><i class="icon icon-plus text-small"/></span> <span class="darken">
<span>{{t "loggingPage.fluentd.addServer"}}</span> <i class="icon icon-plus text-small"/>
</span>
<span>
{{t "loggingPage.fluentd.addServer"}}
</span>
</button> </button>
</div> </div>
</div> </div>
<div class="row"> <div class="row">
<div class="col span-6 pt-0" style="margin-top: 43px;"> <div class="col span-6 pt-0" style="margin-top: 43px;">
{{input type="checkbox" classNames="form-control" checked=config.compress}} {{input
type="checkbox"
classNames="form-control"
checked=config.compress
}}
{{t "loggingPage.fluentd.compress.label"}} {{t "loggingPage.fluentd.compress.label"}}
<p class="text-info text-small" style="margin-left: 25px;">{{t "loggingPage.fluentd.compress.helpText"}}</p> <p class="text-info text-small" style="margin-left: 25px;">
{{t "loggingPage.fluentd.compress.helpText"}}
</p>
</div> </div>
<div class="col span-6 pt-0" style="margin-top: 43px;"> <div class="col span-6 pt-0" style="margin-top: 43px;">
{{input type="checkbox" classNames="form-control" checked=config.enableTls}} {{input
type="checkbox"
classNames="form-control"
checked=config.enableTls
}}
{{t "loggingPage.fluentd.enableTls.label"}} {{t "loggingPage.fluentd.enableTls.label"}}
{{#if config.enableTls}} {{#if config.enableTls}}
<div class="clearfix"> <div class="clearfix">
<label class="acc-label pt-5">{{t "loggingPage.fluentd.certificate.label"}}</label> <label class="acc-label pt-5">
{{t "loggingPage.fluentd.certificate.label"}}
</label>
</div> </div>
{{input-text-file {{input-text-file
classNames="box" classNames="box"
@ -135,4 +164,7 @@
</div> </div>
</section> </section>
{{logging/form-log-format logPreview=logPreview model=model}} {{logging/form-log-format
logPreview=logPreview
model=model
}}