mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
55 lines
1.2 KiB
Text
55 lines
1.2 KiB
Text
{#
|
|
(C) 2022 - ntop.org
|
|
This template is used by the `SSH host details` page inside the `Hosts`.
|
|
#}
|
|
|
|
|
|
<div id="host-ssh-table">
|
|
<page-host-ssh
|
|
:page_csrf="page_csrf"
|
|
:url_params="url_params">
|
|
</page-host-ssh>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
const pageCsrf = "{{ ntop.getRandomCSRFValue() }}";
|
|
const url_params = {
|
|
host: "{{ host }}",
|
|
fingerprint_type: "{{ fingerprint_type }}",
|
|
ifid: "{{ ifid }}",
|
|
};
|
|
|
|
/* ******************************************************* */
|
|
|
|
function start_vue() {
|
|
let vue_options = {
|
|
components: {
|
|
'page-host-ssh': ntopVue.PageHostSSH,
|
|
},
|
|
/**
|
|
* First method called when the component is created.
|
|
*/
|
|
created() {},
|
|
mounted() {
|
|
},
|
|
data() {
|
|
return {
|
|
page_csrf: pageCsrf,
|
|
url_params: url_params,
|
|
};
|
|
},
|
|
methods: {
|
|
},
|
|
};
|
|
const _vue = ntopVue.Vue.createApp(vue_options);
|
|
const vue_app = _vue.mount('#host-ssh-table');
|
|
return vue_app;
|
|
}
|
|
|
|
/* ******************************************************* */
|
|
|
|
$(function () {
|
|
// initialize script table
|
|
start_vue();
|
|
});
|
|
</script>
|