#springMessageText("idp.attribute-release.attributesHeader", "Information to be Provided to Service") |
#if ($attributeReleaseFlowDescriptor.perAttributeConsentEnabled )
#springMessageText("idp.attribute-release.ToggleAll", "Alle") #end |
|
---|---|---|
$encoder.encodeForHTML($attributeDisplayNameFunction.apply($attribute)) |
#foreach ($value in $attribute.values)
$encoder.encodeForHTML($value.getDisplayValue())
#end |
#if ($attributeReleaseFlowDescriptor.perAttributeConsentEnabled ) #if (!$attributeRequired.apply($attribute)) #set ($inputType = "checkbox") #else #set ($inputType = "hidden") #springMessageText("idp.attribute-release.requiredLabel", "notwendig") #end #else #set ($inputType = "hidden") #end |
#if ($attributeReleaseFlowDescriptor.perAttributeConsentEnabled && !($isAttributeRequired.apply($attribute)))
#set ($inputType = "checkbox")
#else
#set ($inputType = "hidden")
#end
...
|