Commit 9fb121e2 authored by Ad Schellevis's avatar Ad Schellevis

(dashboard) move crashreport message up

parent 95268566
......@@ -309,15 +309,19 @@ include("fbegin.inc");?>
<input type="hidden" value="<?= $pconfig['column_count'];?>" name="column_count" id="column_count_input" />
</form>
<div class="container-fluid">
<div class="row">
<div class="col-md-12 col-xs-12">
<?php
$crash_report = get_crash_report();
if ($crash_report != '') {
print_info_box($crash_report);
}?>
</div>
</div>
<div id="dashboard_container" class="row" style="display:none">
<div class="col-md-4 dashboard_grid_column" id="dashboard_col1">
<div class="col-xs-12 col-md-4 dashboard_grid_column" id="dashboard_col1">
<?php
$crash_report = get_crash_report();
if ($crash_report != '') {
print_info_box($crash_report);
}
foreach ($widgetCollection as $widgetItem):
$widgettitle = $widgetItem['name'] . "_title";
$widgettitlelink = $widgetItem['name'] . "_title_link";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment