Files
gallery3/core/views/organize_edit_general.html.php
Tim Almdal 762ca22544 This takes us the next step closer to providing bulk edit. We still
can't edit, but we are getting closer :-).
This change sets up a framework for modules to contribute edit panels
to the organize drawer. Currently implemented General (albums and
photos), Sort Order (albums only) and Manage Tags
2009-05-18 19:34:03 +00:00

16 lines
516 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<ul>
<li>
<label for="title"><?= t("Title") ?></label>
<div id="title" type="text" class="textbox" ><?= $item->title ?></div>
</li>
<li>
<label for="description"><?= t("Description") ?></label>
<div id="description" class="textarea" ><?= $item->description ?></div>
</li>
<li>
<label for="dirname"><?= t("Directory Name") ?></label>
<div id="dirname" type="text" class="textbox" ><?= $item->name ?></div>
</li>
</ul>