summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/dashboard/error.phtml
blob: 9396b490e453c790ab8acda99127f61d6e2080e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="content">
    <h1><?= $this->translate('Could not save dashboard'); ?></h1>
    <p>
        <?= $this->translate('Please copy the following dashboard snippet to '); ?>
        <strong><?= $this->config->getConfigFile(); ?>;</strong>.
        <br>
        <?= $this->translate('Make sure that the webserver can write to this file.'); ?>
    </p>
    <pre><?= $this->config; ?></pre>
    <hr>
    <h2><?= $this->translate('Error details'); ?></h2>
    <p><?= $this->error->getMessage(); ?></p>
</div>