{% extends "base.html" %} {% load i18n %} {% block content %}
{% if entity_group %}

{% trans "Edit entity group" %}

{{ entity_group }}

{% else %}

{% trans "Add entity group" %}

{% endif %}
{% csrf_token %}
{{ form.as_p }}

Some tips about the query field:

Example queries:

//md:SingleLogoutService
Entities that have a SingleLogout endpoint node
//md:OrganizationName=Acme
Entities which OrganizationName is Acme
//Attribute[@Name='http://id.incommon.org/attribute/entity/category']/AttributeValue=http://id.incommon.org/category/research-and-scholarship
Entities in the Research & Scholarship category
{% if entity_group %} {% trans "or" %} {% trans "Cancel" %} {% else %} {% trans "or" %} {% trans "Cancel" %} {% endif %}
{% endblock %}