John Cowen 7044aa52c8 ui: Namespace Support (#6639)
Adds namespace support to the UI:

1. Namespace CRUD/management
2. Show Namespace in relevant areas (intentions, upstreams)
3. Main navigation bar improvements
4. Logic/integration to interact with a new `internal/acl/authorize` endpoint
2019-12-18 12:26:47 +00:00

25 lines
883 B
Handlebars

<fieldset>
{{#if create }}
<div class="type-toggle type-negative">
<span>Restrict this token to a local datacenter?</span>
<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>
<label>
<input type="checkbox" name="Local" checked={{if (not Local) 'checked' }} onchange={{action 'change'}} />
<span>No</span>
</label>
</div>
{{/if}}
<label class="type-text validate-optional">
<span>Description (Optional)</span>
<textarea name="Description" oninput={{action 'change'}}>{{item.Description}}</textarea>
</label>
</fieldset>
<fieldset id="roles">
<h2>Roles</h2>
{{role-selector dc=dc nspace=nspace items=item.Roles}}
</fieldset>
<fieldset id="policies">
<h2>Policies</h2>
{{policy-selector dc=dc nspace=nspace items=item.Policies}}
</fieldset>