{% extends 'base.html.twig' %} {% block nav_title %}  Platform - LtiDeepLinkingRequest launch{% endblock %} {% block body %}
{{ form_start(form) }} {{ form_errors(form) }}
{{ form_row(form.registration) }}
{{ form_row(form.user_type) }}
{{ form_row(form.user_list) }}
{{ form_row(form.custom_user_id) }}
{{ form_row(form.custom_user_name) }}
{{ form_row(form.custom_user_email) }}
{{ form_row(form.custom_user_locale) }}
{{ form_row(form.accept_types) }}
{{ form_row(form.accept_presentation_document_targets) }}
{{ form_row(form.accept_media_types) }}
{{ form_row(form.accept_multiple) }}
{{ form_row(form.auto_create) }}
{{ form_label(form.deep_linking_url) }}
{{ form_widget(form.deep_linking_url) }}
{{ form_help(form.deep_linking_url) }} {{ form_errors(form.deep_linking_url) }}
{{ form_label(form.claims) }}
{{ form_widget(form.claims) }}
Invalid claims, please provide a valid JSON representation
{{ form_help(form.claims) }} {{ form_errors(form.claims) }}
{{ form_end(form) }}
{% include 'launch/modal/generatorShareModal.html.twig' with {'url': formShareUrl} %} {% if deepLinkingLaunchRequest %}
 LtiDeepLinkingRequest launch
Issuer
{{ deepLinkingLaunchRequest.parameters.get('iss') }}
Login hint
Url
{{ deepLinkingLaunchRequest.url }}
Target link uri
{{ deepLinkingLaunchRequest.parameters.get('target_link_uri') }}
Client id
{{ deepLinkingLaunchRequest.parameters.get('client_id') }}
Deployment id
{{ deepLinkingLaunchRequest.parameters.get('lti_deployment_id') }}
LTI message hint
{% endif %} {% endblock body %}