mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-25 22:09:11 -04:00
16 lines
516 B
PHP
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>
|