You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.6 KiB
45 lines
1.6 KiB
|
|
<div id="menuLeft" class="col-12 col-md-2 p-2">
|
|
|
|
<div class="dropdown <?= $getQ[1]=="user" ? "active":"" ?>">
|
|
<div class="title">Gestione iscritti</div>
|
|
<ul class="items">
|
|
<li><a href="<?= $BASE_URL ?>/sheets/user/list">Elenco iscritti </a></li>
|
|
<li><a href="<?= $BASE_URL ?>/sheets/user/add">Aggiungi iscritto </a></li>
|
|
<li><a href="<?= $BASE_URL ?>/sheets/user/mod">Modifica iscritto </a></li>
|
|
<li><a href="<?= $BASE_URL ?>/sheets/user/del">Elimina iscritto </a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="dropdown <?= $getQ[1]=="news" ? "active":"" ?>">
|
|
<div class="title">Notizie</div>
|
|
<ul class="items">
|
|
<li><a href="<?= $BASE_URL ?>/sheets/news/add">Aggiungi notizia </a></li>
|
|
<li><a href="<?= $BASE_URL ?>/sheets/news/mod">Modifica notizia </a></li>
|
|
<li><a href="<?= $BASE_URL ?>/sheets/news/del">Elimina notizia </a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="dropdown <?= $getQ[1]=="files" ? "active":"" ?>">
|
|
<div class="title">Files</div>
|
|
<ul class="items">
|
|
<li><a href="<?= $BASE_URL ?>/sheets/files/add">Aggiungi file </a></li>
|
|
<li><a href="<?= $BASE_URL ?>/sheets/files/del">Elimina file </a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="dropdown <?= $getQ[1]=="links" ? "active":"" ?>">
|
|
<div class="title">Links utili</div>
|
|
<ul class="items">
|
|
<li><a href="<?= $BASE_URL ?>/sheets/links/add">Aggiungi link </a></li>
|
|
<li><a href="<?= $BASE_URL ?>/sheets/links/del">Elimina link </a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|