github.com/outbrain/consul@v1.4.5/ui-v2/app/templates/dc/acls/tokens/-fieldsets.hbs (about)

     1  <fieldset>
     2  {{#if create }}
     3    <div class="type-toggle type-negative">
     4      <span>Restrict this token to a local datacenter?</span>
     5      <em>Local tokens get set in the Raft store of the local DC and do not ever get transmitted to the primary DC or replicated to any other DC.</em>
     6      <label>
     7        <input type="checkbox" name="Local" checked={{if (not Local) 'checked' }} onchange={{action 'change'}} />
     8        <span>No</span>
     9      </label>
    10    </div>
    11  {{/if}}
    12    <label class="type-text validate-optional">
    13      <span>Description (Optional)</span>
    14      <textarea name="Description" oninput={{action 'change'}}>{{item.Description}}</textarea>
    15    </label>
    16  </fieldset>
    17  <fieldset>
    18    <h2>Policies</h2>
    19    {{partial 'dc/acls/tokens/policies'}}
    20  </fieldset>