Parent Directory
|
Revision Log
|
Revision Graph
#277321 by nedjo: Use AJAX properly supports summaries in attachments.
| 1 | <?php |
| 2 | // $Id: views-view-summary.tpl.php,v 1.5 2008/04/29 00:35:08 merlinofchaos Exp $ |
| 3 | /** |
| 4 | * @file views-view-summary.tpl.php |
| 5 | * Default simple view template to display a list of summary lines |
| 6 | * |
| 7 | * @ingroup views_templates |
| 8 | */ |
| 9 | ?> |
| 10 | <div class="item-list"> |
| 11 | <ul class="views-summary"> |
| 12 | <?php foreach ($rows as $row): ?> |
| 13 | <li><a href="<?php print $row->url; ?>"><?php print $row->link; ?></a> |
| 14 | <?php if (!empty($options['count'])): ?> |
| 15 | (<?php print $row->count?>) |
| 16 | <?php endif; ?> |
| 17 | </li> |
| 18 | <?php endforeach; ?> |
| 19 | </ul> |
| 20 | </div> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |