Scope Information
{% for scope in scopes %}
{{scope.name}}
{% for scope_data in scope.data.itervalues %}
-
{{scope_data.key}}
{% if "edit" in scope_data.manage_urls %}
Edit
{% endif %}
{% if "list" in scope_data.manage_urls %}
List
{% endif %}
{% if "add" in scope_data.manage_urls %}
Add
{% endif %}
{% endfor %}
{% endfor %}