summaryrefslogtreecommitdiff
path: root/modules/organize/views/organize_edit.html.php
blob: c0fc43e5e518de64d31550a45640e40a9dfe83d0 (plain)
1
2
3
4
5
6
7
8
9
10
<?php defined("SYSPATH") or die("No direct script access.") ?>
<ul>
<? foreach ($panes as $idx => $pane): ?>
  <li><a href="#pane-<?= $idx ?>"><?= $pane["label"] ?></a></li>
<? endforeach?>
</ul>

<? foreach ($panes as $idx => $pane): ?>
  <div id="pane-<?= $idx ?>" class="gOrganizeEditPane"><?= $pane["content"] ?></div>
<? endforeach?>