mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-02-26 11:10:24 -05:00
- The ActionController is now able to render a seperate detail view
- All list scripts select the currently active row from the detail view with
the 'active' class
- Autosubmit is now again attached to the onchange attribute (to prevent issues
when js can't load correctly)
- Logout is now recognized and causes a page refresh (will be made more generic)
- Add history mock for testing url changes
- Update all grids to implement the app/mainDetailGrid component
refs #4611
24 lines
No EOL
657 B
PHTML
Executable file
24 lines
No EOL
657 B
PHTML
Executable file
<?php echo $this->render('parts/topbar.phtml') ?>
|
|
<div class="row">
|
|
|
|
<!-- Only required for left/right tabs -->
|
|
<div class="col-sm-12 col-xs-12 col-md-2 col-lg-2">
|
|
<?php echo $this->render('parts/navigation.phtml') ?>
|
|
</div>
|
|
|
|
<div class="col-sm-12 col-xs-12 col-md-10 col-lg-10">
|
|
<?= $this->mainDetail($this->render('inline.phtml'), $this->layout()->detailContent); ?>
|
|
</div>
|
|
|
|
</div>
|
|
<br/>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<!-- Make some space at the end of the page -->
|
|
<div class="panel">
|
|
<div class="panel-body text-center">
|
|
Icinga 2 Web © 2013 Icinga Team
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|