mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
33 lines
749 B
HTML
33 lines
749 B
HTML
|
{% extends "base.html" %}
|
||
|
{% set other_props = {
|
||
|
'messages': get_flashed_messages(with_categories=true)
|
||
|
} %}
|
||
|
{% block body %}
|
||
|
<style>
|
||
|
#root:not(:empty) + .pg-sp-container {
|
||
|
display: none;
|
||
|
}
|
||
|
</style>
|
||
|
<div id="root" style="height: 100%"></div>
|
||
|
<div class="pg-sp-container">
|
||
|
<div class="pg-sp-content">
|
||
|
<div class="pg-sp-icon"></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|
||
|
{% block init_script %}
|
||
|
try {
|
||
|
require(
|
||
|
['security.pages'],
|
||
|
function() {
|
||
|
window.renderSecurityPage('{{page_name}}', {{page_props|tojson|safe}},
|
||
|
{{other_props|tojson|safe}});
|
||
|
}, function() {
|
||
|
console.log(arguments);
|
||
|
}
|
||
|
);
|
||
|
} catch (err) {
|
||
|
console.log(err);
|
||
|
}
|
||
|
{% endblock %}
|