Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos-webui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'module/Storage/view/storage/storage/status.phtml')
-rw-r--r--module/Storage/view/storage/storage/status.phtml38
1 files changed, 0 insertions, 38 deletions
diff --git a/module/Storage/view/storage/storage/status.phtml b/module/Storage/view/storage/storage/status.phtml
deleted file mode 100644
index 8e4d9d1..0000000
--- a/module/Storage/view/storage/storage/status.phtml
+++ /dev/null
@@ -1,38 +0,0 @@
-<?php
-
-$title = 'Storage Status';
-$this->headTitle($title);
-
-?>
-
-<ul class="nav nav-tabs">
- <li class="active"><a href="<?php echo $this->url('storage', array('action'=>'index')); ?>"><?php echo $this->translate('Devices'); ?></a></li>
- <li><a href="<?php echo $this->url('pool', array('action'=>'index')); ?>"><?php echo $this->translate('Pools'); ?></a></li>
- <li><a href="<?php echo $this->url('media', array('action'=>'index')); ?>"><?php echo $this->translate('Volumes'); ?></a></li>
-</ul>
-
-<br />
-
-<?php if($this->acl_alert) : echo $this->ACLAlert($this->required_commands); elseif(!$this->acl_alert) : ?>
-
-<div class="row">
-<div class="col-md-8">
-
-<div class="panel panel-default">
-
-<div class="panel-heading">
- <h3 class="panel-title"><?php echo $this->translate("Storage Status"); ?></h3>
-</div>
-
-<div class="panel-body">
-<pre class="dird-messages" style="height: 500px; font-size: 8pt;">
-<code>
-<?php echo $this->result; ?>
-</code>
-</pre>
-</div>
-
-</div>
-</div>
-
-<?php endif; ?>