summaryrefslogtreecommitdiff
path: root/modules/info/views/info_block.html.php
blob: 05228ec1899fca47fd69901fadf0ba0fecb490b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<? defined("SYSPATH") or die("No direct script access."); ?>
<table class="gMetadata">
  <tbody>
    <tr>
      <th><?= _("Title:") ?></th>
      <td><?= $item->title; ?></td>
    </tr>
    <tr>
      <th><?= _("Description:") ?></th>
      <td><?= $item->description; ?></td>
    </tr>
    <?  if ($item->id != 1): ?>
    <tr>
      <th><?= _("Name:") ?></th>
      <td><?= $item->name; ?></td>
    </tr>
    <? endif ?>
    <? if ($item->owner): ?>
    <tr>
      <th><?= _("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>