{{#if items}}
{{#each items}}
<li {{#unless /created}}tabindex="0"{{/unless}} class="list-group-item" data-list-item="{{this.action}}" {{#if /created}}data-item-selected="true"{{/if}}>
{{this.action}}
<span {{#if /created}}tabindex="0"{{/if}} class="fa {{#if /created}}fa-close{{/if}} pull-right"></span>
<div class="pull-right radio-group action-permissions">
<label class="radio-inline">
<input name="{{this.action}}Permission" type="radio" value="true" {{#if this.value}}checked{{/if}}> {{t "common.form.allow"}}
</label>
<label class="radio-inline">
<input name="{{this.action}}Permission" type="radio" value="false" {{#unless this.value}}checked{{/unless}}> {{t "common.form.deny"}}
</label>
</div>
</li>
{{/each}}
{{else}}
<li class="list-group-item">{{t "console.authorization.common.stripedList.noItems"}}</li>
{{/if}}