## Copyright (c) 2016 by Adaptive Computing Enterprises, Inc. All Rights Reserved.
<%! from django.utils.translation import ugettext as _ %>
${_("Role Name")} |
${_("Description")} |
%if status_code == 200:
%for count , roles in enumerate(rolelist):
%for id in roles:
${ roles[id]['name'] } |
%if 'description' in roles[id]:
${ roles[id]['description'] }
%else:
N/A
%endif
|
%if ('update-roles' in perms) or ('delete-roles' in perms):
%if 'update-roles' in perms:
%endif
%if 'delete-roles' in perms:
%endif
|
%endif
%endfor
%endfor
%else:
${ rolelist }
%endif
%if not basic_roles_exist:
%endif