{{#if (eq type 'create')}}
  {{#if (eq status 'success') }}
    Your policy has been added.
  {{else}}
    There was an error adding your policy.
  {{/if}}
{{else if (eq type 'update') }}
  {{#if (eq status 'success') }}
    Your policy has been saved.
  {{else}}
    There was an error saving your policy.
  {{/if}}
{{ else if (eq type 'delete')}}
  {{#if (eq status 'success') }}
    Your policy was deleted.
  {{else}}
    There was an error deleting your policy.
  {{/if}}
{{/if}}