| 1 |
<div class='dir-listing-view dir-listing-view-<?php print $view ?>'>
|
| 2 |
<div class='dir-listing-header'>
|
| 3 |
<?php print $toolbar ?>
|
| 4 |
<div class='dir-listing-title'><?php print $node->title ?></div>
|
| 5 |
</div>
|
| 6 |
<div class='dir-listing-description'>
|
| 7 |
<?php print $description ?>
|
| 8 |
</div>
|
| 9 |
<div class='dir-listing-files'>
|
| 10 |
<?php print $content ?>
|
| 11 |
</div>
|
| 12 |
|
| 13 |
<?php if ($upload_form) {
|
| 14 |
print $upload_form;
|
| 15 |
}?>
|
| 16 |
<div class='dir-listing-status'>
|
| 17 |
<?php if ($statistics['empty']) {
|
| 18 |
print $statistics['empty'];
|
| 19 |
} else {
|
| 20 |
print implode(" - ", $statistics);
|
| 21 |
} ?>
|
| 22 |
</div>
|
| 23 |
</div>
|