{% 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: The query is composed by one or more XPATH expressions separated by the & character. Only a subset of the XPATH standard is actually implemented. Check this subset as implemented by ElementTree You can also use the = operator in each expression to add the text value of a node. 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 %}
Some tips about the query field:
Example queries: