provide/fix adminpage div container for all admin pages
This commit is contained in:
parent
764a9be90a
commit
96d24af20f
|
@ -2,10 +2,11 @@
|
||||||
<h1>{{$title}} - {{$page}}</h1>
|
<h1>{{$title}} - {{$page}}</h1>
|
||||||
<p>{{$intro1}}</p>
|
<p>{{$intro1}}</p>
|
||||||
<p>{{$intro2}}</p>
|
<p>{{$intro2}}</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
<form action="{{$baseurl}}/admin/deleteitem" method="post">
|
<form action="{{$baseurl}}/admin/deleteitem" method="post">
|
||||||
<input type="hidden" name="form_security_token" value="{{$form_security_token}}">
|
<input type="hidden" name="form_security_token" value="{{$form_security_token}}">
|
||||||
{{include file="field_input.tpl" field=$deleteitemguid}}
|
{{include file="field_input.tpl" field=$deleteitemguid}}
|
||||||
<div class="submit"><input type="submit" name="page_deleteitem_submit" value="{{$submit}}" /></div>
|
<div class="submit"><input type="submit" name="page_deleteitem_submit" value="{{$submit}}" /></div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
|
@ -1,12 +1,16 @@
|
||||||
<script src="{{$baseurl}}/vendor/asset/Chart-js/dist/Chart.min.js"></script>
|
<script src="{{$baseurl}}/vendor/asset/Chart-js/dist/Chart.min.js"></script>
|
||||||
<div id="adminpage">
|
<div id="adminpage">
|
||||||
<h1>{{$title}} - {{$page}}</h1>
|
<h1>{{$title}} - {{$page}}</h1>
|
||||||
|
|
||||||
<canvas id="FederationChart" class="federation-graph" width="320" height="320"></canvas>
|
<canvas id="FederationChart" class="federation-graph" width="320" height="320"></canvas>
|
||||||
<p>{{$intro}}</p>
|
<p>{{$intro}}</p>
|
||||||
|
|
||||||
{{if not $autoactive}}
|
{{if not $autoactive}}
|
||||||
<p class="error-message">{{$hint}}</p>
|
<p class="error-message">{{$hint}}</p>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
<p>{{$legendtext}}</p>
|
<p>{{$legendtext}}</p>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
{{foreach $counts as $c}}
|
{{foreach $counts as $c}}
|
||||||
{{if $c[0]['total'] > 0}}
|
{{if $c[0]['total'] > 0}}
|
||||||
|
@ -14,9 +18,9 @@
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
|
||||||
<script>
|
<script>
|
||||||
var FedData = {
|
var FedData = {
|
||||||
datasets: [{
|
datasets: [{
|
||||||
data: [
|
data: [
|
||||||
{{foreach $counts as $c}}
|
{{foreach $counts as $c}}
|
||||||
|
@ -24,24 +28,24 @@ var FedData = {
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
],
|
],
|
||||||
backgroundColor: [
|
backgroundColor: [
|
||||||
{{foreach $counts as $c}}
|
{{foreach $counts as $c}}
|
||||||
'{{$c[3]}}',
|
'{{$c[3]}}',
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
],
|
],
|
||||||
hoverBackgroundColor: [
|
hoverBackgroundColor: [
|
||||||
{{foreach $counts as $c}}
|
{{foreach $counts as $c}}
|
||||||
'#EE90A1',
|
'#EE90A1',
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
]
|
]
|
||||||
}],
|
}],
|
||||||
labels: [
|
labels: [
|
||||||
{{foreach $counts as $c}}
|
{{foreach $counts as $c}}
|
||||||
"{{$c[0]['platform']}}",
|
"{{$c[0]['platform']}}",
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
var ctx = document.getElementById("FederationChart").getContext("2d");
|
var ctx = document.getElementById("FederationChart").getContext("2d");
|
||||||
var myDoughnutChart = new Chart(ctx, {
|
var myDoughnutChart = new Chart(ctx, {
|
||||||
type: 'doughnut',
|
type: 'doughnut',
|
||||||
data: FedData,
|
data: FedData,
|
||||||
options: {
|
options: {
|
||||||
|
@ -49,11 +53,11 @@ var myDoughnutChart = new Chart(ctx, {
|
||||||
animation: {animateRotate: false},
|
animation: {animateRotate: false},
|
||||||
responsive: false
|
responsive: false
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<table id="federation-stats">
|
<table id="federation-stats">
|
||||||
{{foreach $counts as $c}}
|
{{foreach $counts as $c}}
|
||||||
{{if $c[0]['total'] > 0}}
|
{{if $c[0]['total'] > 0}}
|
||||||
<tr>
|
<tr>
|
||||||
<th>{{$c[0]['platform']}}</th>
|
<th>{{$c[0]['platform']}}</th>
|
||||||
|
@ -64,7 +68,7 @@ var myDoughnutChart = new Chart(ctx, {
|
||||||
<td colspan="3" class="federation-data">
|
<td colspan="3" class="federation-data">
|
||||||
<canvas id="{{$c[2]}}Chart" class="federation-network-graph" width="240" height="240"></canvas>
|
<canvas id="{{$c[2]}}Chart" class="federation-network-graph" width="240" height="240"></canvas>
|
||||||
<script>
|
<script>
|
||||||
var {{$c[2]}}data = {
|
var {{$c[2]}}data = {
|
||||||
datasets: [{
|
datasets: [{
|
||||||
data: [
|
data: [
|
||||||
{{foreach $c[1] as $v}}
|
{{foreach $c[1] as $v}}
|
||||||
|
@ -87,9 +91,9 @@ var {{$c[2]}}data = {
|
||||||
'{{$v['version']}}',
|
'{{$v['version']}}',
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
var ctx = document.getElementById("{{$c[2]}}Chart").getContext("2d");
|
var ctx = document.getElementById("{{$c[2]}}Chart").getContext("2d");
|
||||||
var my{{$c[2]}}DoughnutChart = new Chart(ctx, {
|
var my{{$c[2]}}DoughnutChart = new Chart(ctx, {
|
||||||
type: 'doughnut',
|
type: 'doughnut',
|
||||||
data: {{$c[2]}}data,
|
data: {{$c[2]}}data,
|
||||||
options: {
|
options: {
|
||||||
|
@ -97,7 +101,7 @@ var my{{$c[2]}}DoughnutChart = new Chart(ctx, {
|
||||||
animation: {animateRotate: false},
|
animation: {animateRotate: false},
|
||||||
responsive: false
|
responsive: false
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<ul class="federation-stats">
|
<ul class="federation-stats">
|
||||||
{{foreach $c[1] as $v}}
|
{{foreach $c[1] as $v}}
|
||||||
|
@ -114,5 +118,6 @@ var my{{$c[2]}}DoughnutChart = new Chart(ctx, {
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
|
|
|
@ -1,12 +1,14 @@
|
||||||
<h1>{{$title}}</h1>
|
|
||||||
|
|
||||||
<form action="admin/features" method="post" autocomplete="off">
|
<div id="adminpage">
|
||||||
<input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
|
<h1>{{$title}}</h1>
|
||||||
|
|
||||||
{{foreach $features as $g => $f}}
|
<form action="admin/features" method="post" autocomplete="off">
|
||||||
<h3 class="settings-heading"><a href="javascript:;">{{$f.0}}</a></h3>
|
<input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
|
||||||
|
|
||||||
<div class="settings-content-block">
|
{{foreach $features as $g => $f}}
|
||||||
|
<h3 class="settings-heading"><a href="javascript:;">{{$f.0}}</a></h3>
|
||||||
|
|
||||||
|
<div class="settings-content-block">
|
||||||
{{foreach $f.1 as $fcat}}
|
{{foreach $f.1 as $fcat}}
|
||||||
{{include file="field_yesno.tpl" field=$fcat.0}}
|
{{include file="field_yesno.tpl" field=$fcat.0}}
|
||||||
{{include file="field_yesno.tpl" field=$fcat.1}}
|
{{include file="field_yesno.tpl" field=$fcat.1}}
|
||||||
|
@ -15,7 +17,8 @@
|
||||||
<div class="settings-submit-wrapper" >
|
<div class="settings-submit-wrapper" >
|
||||||
<input type="submit" name="submit" class="settings-features-submit" value="{{$submit|escape:'html'}}" />
|
<input type="submit" name="submit" class="settings-features-submit" value="{{$submit|escape:'html'}}" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
|
</div>
|
||||||
|
|
|
@ -1,18 +1,19 @@
|
||||||
|
|
||||||
<h2>{{$banner}}</h2>
|
<div id="adminpage">
|
||||||
|
<h2>{{$banner}}</h2>
|
||||||
|
|
||||||
<div id="failed_updates_desc">{{$desc}}</div>
|
<div id="failed_updates_desc">{{$desc}}</div>
|
||||||
|
|
||||||
{{if $failed}}
|
{{if $failed}}
|
||||||
{{foreach $failed as $f}}
|
{{foreach $failed as $f}}
|
||||||
|
<h4>{{$f}}</h4>
|
||||||
|
|
||||||
<h4>{{$f}}</h4>
|
<ul>
|
||||||
<ul>
|
<li><a href="{{$base}}/admin/dbsync/mark/{{$f}}">{{$mark}}</a></li>
|
||||||
<li><a href="{{$base}}/admin/dbsync/mark/{{$f}}">{{$mark}}</a></li>
|
<li><a href="{{$base}}/admin/dbsync/{{$f}}">{{$apply}}</a></li>
|
||||||
<li><a href="{{$base}}/admin/dbsync/{{$f}}">{{$apply}}</a></li>
|
</ul>
|
||||||
</ul>
|
|
||||||
|
|
||||||
<hr />
|
|
||||||
{{/foreach}}
|
|
||||||
{{/if}}
|
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
{{/foreach}}
|
||||||
|
{{/if}}
|
||||||
|
</div>
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
|
|
||||||
<h2>{{$banner}}</h2>
|
<div id="adminpage">
|
||||||
|
<h2>{{$banner}}</h2>
|
||||||
|
|
||||||
<p><a href="{{$base}}/admin/dbsync/check">{{$check}}</a></p>
|
<p><a href="{{$base}}/admin/dbsync/check">{{$check}}</a></p>
|
||||||
|
|
||||||
<hr />
|
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue