You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
HTML
|
|
<script>
|
|
$(document).ready(function(){
|
|
var uri = '{{system.context}}/api/info/about'
|
|
var http = HttpClient.instance()
|
|
|
|
http.get(uri,function(x){
|
|
_info = JSON.parse(x.responseText)
|
|
Object.keys(_info).forEach(_id=>{
|
|
if ($('.'+_id).length == 1){
|
|
value = _info[_id]
|
|
$('.'+_id).html(value.replace(/\n/g,'<br>'))
|
|
}
|
|
})
|
|
})
|
|
})
|
|
</script>
|
|
<style>.legal {height:80vh; line-height: 1.5; font-family:sans-serif; font-size:14px; font-weight:lighter}</style>
|
|
<div class="legal">
|
|
<div style="background-color: #f3f3f3;padding:8px;">
|
|
<span class="author bold"></span>, version <span class="version"></span>
|
|
</div>
|
|
<p>
|
|
|
|
<div style="display:grid; grid-template-columns: 60% auto; gap:8px;">
|
|
<div>
|
|
<h3>MIT License</h3>
|
|
<div class="license"></div>
|
|
</div>
|
|
<div>
|
|
<h3>Supported Databases</h3>
|
|
<div class="supported"></div>
|
|
</div>
|
|
</div>
|
|
|
|
</p>
|
|
</div> |