File: show_metadata.twig

package info (click to toggle)
simplesamlphp 1.19.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 43,240 kB
  • sloc: php: 200,806; javascript: 15,025; xml: 3,336; sh: 265; perl: 82; makefile: 70; python: 5
file content (18 lines) | stat: -rw-r--r-- 701 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% set pagetile = 'SimpleSAMLphp Show Metadata'|trans %}
{% extends 'base.twig' %}
{% block content %}
    <div class="code-box">
        <div class="code-box-title">
            <h3>{{ 'Metadata'|trans }}</h3>
            <button data-clipboard-target="#metadata" class="pure-button right clipboard-btn copy">
                <span class="fa fa-copy"></span>
            </button>
        </div>
        <div class="code-box-content">
            <pre id="metadata">$metadata[{{ entityid }}] => {{ metadata|escape }}</pre>
        </div>
    </div>
    <div class="center">
        <a href="{{ backlink }}" class="pure-button pure-button-red">{{ 'Back'|trans }}</a>
    </div>
{% endblock content %}