mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 11:29:24 -04:00
- And refactor printf to our string interpolation / pluralization syntax - Also, a slight change to the translations_incomings table, using binary(16) instead of char(32) as message key.
33 lines
702 B
PHP
33 lines
702 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<table class="gMetadata">
|
|
<tbody>
|
|
<tr>
|
|
<th><?= t("Title:") ?></th>
|
|
<td><?= $item->title; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?= t("Description:") ?></th>
|
|
<td><?= $item->description; ?></td>
|
|
</tr>
|
|
<? if ($item->id != 1): ?>
|
|
<tr>
|
|
<th><?= t("Name:") ?></th>
|
|
<td><?= $item->name; ?></td>
|
|
</tr>
|
|
<? endif ?>
|
|
<? if ($item->owner): ?>
|
|
<tr>
|
|
<th><?= t("Owner:") ?></th>
|
|
<td><a href="#"><?= $item->owner->name ?></a></td>
|
|
</tr>
|
|
<? endif ?>
|
|
<tr>
|
|
<td colspan="2" class="toggle">
|
|
<a href="#">more \/</a>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
|